In order to setup VCR and webmock for Cucumber testing you should:
Add webmock and VCR gems to your Gemfile.rb:
#Gemfile.rb
group :test do
gem 'webmock'
gem 'vcr'
end
Add file called vcr_setup.rb in your /features/support/ folder that will be used
for VCR configuration.
# features/