Sha256: 5e599308a86f33cc6dd34315c407f538cffe1ea6cb4bde0e15f4b9bbf925cfd6

Contents?: true

Size: 538 Bytes

Versions: 17

Compression:

Stored size: 538 Bytes

Contents

require "vcr"
require 'webmock/rspec'

VCR.configure do |c|
  c.cassette_library_dir     = 'spec/cassettes'
  c.hook_into                :webmock
  c.default_cassette_options = { :match_requests_on => [:method, :uri, :query, :body, :headers] }
  c.configure_rspec_metadata!
end

RSpec.configure do |c|
  # so we can use :vcr rather than :vcr => true;
  # in RSpec 3 this will no longer be necessary.
  c.treat_symbols_as_metadata_keys_with_true_values = true
end

RSpec::Expectations.configuration.on_potential_false_positives = :nothing

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
opentok-4.10.0 spec/spec_helper.rb
opentok-4.9.0 spec/spec_helper.rb
opentok-4.8.1 spec/spec_helper.rb
opentok-4.8.0 spec/spec_helper.rb
opentok-4.7.1 spec/spec_helper.rb
opentok-4.7.0 spec/spec_helper.rb
opentok-4.6.0 spec/spec_helper.rb
opentok-4.5.1 spec/spec_helper.rb
opentok-4.5.0 spec/spec_helper.rb
opentok-4.4.0 spec/spec_helper.rb
opentok-4.3.0 spec/spec_helper.rb
opentok-4.2.0 spec/spec_helper.rb
opentok-4.1.2 spec/spec_helper.rb
opentok-4.1.1 spec/spec_helper.rb
opentok-4.1.0 spec/spec_helper.rb
opentok-4.0.1 spec/spec_helper.rb
opentok-4.0.0 spec/spec_helper.rb