Sha256: 01fe22c0aa6f69b002069245e1705ef414ec8866b21155dc6a8d0c839f2d7c41

Contents?: true

Size: 437 Bytes

Versions: 5

Compression:

Stored size: 437 Bytes

Contents

require 'vcr'

VCR.configure do |c|
  c.before_record do |i|
    i.response.body.force_encoding('UTF-8')
  end
  c.cassette_library_dir = 'fixtures/vcr_cassettes'
  c.hook_into :webmock # or :fakeweb
  # Yahoo BOSS Ignore changing params
  c.default_cassette_options = {
    match_requests_on: [
      :method,
      VCR.request_matchers.uri_without_params(
        :oauth_nonce, :oauth_timestamp, :oauth_signature
      )
    ]
  }
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
geokit-1.14.0 test/vcr_loader.rb
geokit-1.13.1 test/vcr_loader.rb
geokit-1.13.0 test/vcr_loader.rb
geokit-1.12.0 test/vcr_loader.rb
geokit-1.11.0 test/vcr_loader.rb