Sha256: 2cab97825d309d84fc8edc8d9ee5a7a650a8e000c946e608763f79efae9e7853
Contents?: true
Size: 597 Bytes
Versions: 2
Compression:
Stored size: 597 Bytes
Contents
require 'vcr' # VCR.configure do |c| # c.hook_into :webmock # c.cassette_library_dir = 'spec/support/vcr_cassettes' # c.configure_rspec_metadata! # c.allow_http_connections_when_no_cassette = true if real_requests # c.default_cassette_options = {:record => :new_episodes} # end real_requests = ENV['REAL_REQUESTS'] VCR.configure do |c| c.cassette_library_dir = 'spec/vcr_cassettes' c.hook_into :webmock c.allow_http_connections_when_no_cassette = true if real_requests end RSpec.configure do |config| config.before(:each) do VCR.eject_cassette end if real_requests end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
gman_client-0.0.6 | spec/support/vcr.rb |
gman_client-0.0.5 | spec/support/vcr.rb |