Sha256: 67ea28dbca7c54f1fee7fd3e56b41b22c177be19d329ae693189c22657479bae

Contents?: true

Size: 499 Bytes

Versions: 3

Compression:

Stored size: 499 Bytes

Contents

# frozen_string_literal: true

require 'vcr'

VCR.configure do |config|
  config.filter_sensitive_data('<BRAZE_REST_API_KEY>') { BRAZE_REST_API_KEY }
  config.filter_sensitive_data('<BRAZE_REST_URL>') { BRAZE_REST_URL }

  config.cassette_library_dir = 'spec/fixtures/responses'

  config.default_cassette_options = {
    match_requests_on: [:method, :uri, :body],
    record: :once,
    allow_unused_http_interactions: false
  }

  config.configure_rspec_metadata!

  config.hook_into :webmock
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
braze_ruby-0.4.2 spec/support/vcr.rb
braze_ruby-0.4.1 spec/support/vcr.rb
braze_ruby-0.4.0 spec/support/vcr.rb