Skip to content

Commit

Permalink
Move VCR out of the test group
Browse files Browse the repository at this point in the history
When this project is built it is bundled without the test group. This
causes the rake tasks to fail because we now require vcr in the Rakefile
to help with re-creating the recordings.

We could alternatively move the re-record task out of the Rakefile, but
this should get us going again so we at least have visibility of the
dependabot PRs.

Also add /.bundle to the gitignore
  • Loading branch information
Bevan Loon committed Oct 10, 2019
1 parent 5774909 commit cdeb60b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ tmp/*
!tmp/.keep
spec/tmp/*
!spec/tmp/.keep
/.bundle
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ gem "octokit", "~> 4.3"
gem "rake", "~> 12.3.0"
gem "sinatra"
gem "slack-poster", "~> 2.2"
gem "vcr"

group :production, :staging do
gem "unicorn"
Expand All @@ -22,6 +23,5 @@ group :test do
gem "rack-test", "~> 0.8.0"
gem "rspec", "~> 3.7.0"
gem "timecop", "~> 0.9.1"
gem "vcr"
gem "webmock"
end

0 comments on commit cdeb60b

Please sign in to comment.