module Typhoeus::Hydra
Public Class Methods
allow_net_connect?(*args)
Also aliased as: allow_net_connect_without_vcr?
Alias for: allow_net_connect_with_vcr?
allow_net_connect_with_vcr?(*args)
click to toggle source
ensure HTTP requests are always allowed; VCR
takes care of disallowing them at the appropriate times in its hook
# File lib/vcr/library_hooks/typhoeus_0.4.rb, line 91 def allow_net_connect_with_vcr?(*args) VCR.turned_on? ? true : allow_net_connect_without_vcr? end
Also aliased as: allow_net_connect?