Skip to content

Instantly share code, notes, and snippets.

@stephaneliu
Created February 17, 2021 07:35
Show Gist options
  • Save stephaneliu/62314c8d6462d9899578b838d928b0ad to your computer and use it in GitHub Desktop.
Save stephaneliu/62314c8d6462d9899578b838d928b0ad to your computer and use it in GitHub Desktop.
# Gemfile
group :test do
gem "vcr", require: false
gem "webmock"
end
# spec/support/vcr.rb
# frozen_string_literal: true
require "vcr"
VCR.configure do |c|
c.cassette_library_dir = "spec/cassettes"
c.hook_into :webmock
c.configure_respec_metadata!
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment