module FakeWeb

@private

Public Class Methods

allow_net_connect?(*args)
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/fakeweb.rb, line 181
def allow_net_connect_with_vcr?(*args)
  VCR.turned_on? ? true : allow_net_connect_without_vcr?(*args)
end
Also aliased as: allow_net_connect?
allow_net_connect_without_vcr?(*args)
Alias for: allow_net_connect?