Sha256: 275e7da3c2b64738ec9b547e9fd24a06cc85d8397801b01ac0b412bc690e6d18

Contents?: true

Size: 329 Bytes

Versions: 6

Compression:

Stored size: 329 Bytes

Contents

SENSITIVE_DATA = %w(
  OAUTH_CONSUMER_KEY
  OAUTH_CONSUMER_SECRET
  OAUTH_TOKEN
  OAUTH_TOKEN_SECRET
)

VCR.configure do |config|
  config.cassette_library_dir = 'spec/vcr'
  config.hook_into :excon
  config.configure_rspec_metadata!
  
  SENSITIVE_DATA.each do |key|
    config.filter_sensitive_data(key) { ENV[key] }
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
nuorder-1.3.1 spec/support/vcr.rb
nuorder-1.3.0 spec/support/vcr.rb
nuorder-1.2.0 spec/support/vcr.rb
nuorder-1.1.0 spec/support/vcr.rb
nuorder-1.0.1 spec/support/vcr.rb
nuorder-1.0.0 spec/support/vcr.rb