Sha256: 5bc40eeda280c880faeb4d2efd3097f108edc153eb6f7f1988028c7800c2e5b9

Contents?: true

Size: 644 Bytes

Versions: 11

Compression:

Stored size: 644 Bytes

Contents

require 'vcr'

VCR.configure do |c|
  c.cassette_library_dir = 'spec/fixtures/vcr_cassettes'
  c.hook_into :webmock
  c.configure_rspec_metadata!
  c.ignore_hosts 'codeclimate.com'
  c.before_record do |i|
    i.response.body.force_encoding('UTF-8')
  end
  c.filter_sensitive_data('BOLETOSIMPLES_APP_ID') { ENV['BOLETOSIMPLES_APP_ID'] }
  c.filter_sensitive_data('BOLETOSIMPLES_APP_SECRET') { ENV['BOLETOSIMPLES_APP_SECRET'] }
  c.filter_sensitive_data('BOLETOSIMPLES_ACCESS_TOKEN') { ENV['BOLETOSIMPLES_ACCESS_TOKEN'] }
  c.filter_sensitive_data('BOLETOSIMPLES_CLIENT_CREDENTIALS_TOKEN') { ENV['BOLETOSIMPLES_CLIENT_CREDENTIALS_TOKEN'] }
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
boletosimples-0.6.0 spec/support/vcr.rb
boletosimples-0.5.0 spec/support/vcr.rb
boletosimples-0.4.2 spec/support/vcr.rb
boletosimples-0.4.1 spec/support/vcr.rb
boletosimples-0.4.0 spec/support/vcr.rb
boletosimples-0.3.1 spec/support/vcr.rb
boletosimples-0.3.0 spec/support/vcr.rb
boletosimples-0.2.3 spec/support/vcr.rb
boletosimples-0.2.2 spec/support/vcr.rb
boletosimples-0.2.0 spec/support/vcr.rb
boletosimples-0.1.1 spec/support/vcr.rb