Monday, August 31, 2015

WARNING: VCR::RSpec::Macros is deprecated. Use RSpec metadata options instead `:vcr => vcr_options`

Change this:

RSpec.configure do |config|
  config.extend VCR::RSpec::Macros #deprecated
end

to :

VCR.configure do |config|
  config.configure_rspec_metadata!
end