Skip to content

Commit 7229718

Browse files
committed
Add v2 to config
1 parent ef0a605 commit 7229718

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.circleci/config.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,20 +28,20 @@ jobs:
2828
# Reference: https://www.benpickles.com/articles/76-better-ruby-gem-caching-on-circleci
2929
- restore_cache:
3030
keys:
31-
- bundler-{{ checksum "Gemfile.lock" }}-v2
32-
- bundler-
31+
- bundler-v2-{{ checksum "Gemfile.lock" }}
32+
- bundler-v2-
3333

3434
- run: bundle install --clean --path vendor/bundle
3535

3636
- save_cache:
37-
key: bundler-{{ checksum "Gemfile.lock" }}-v2
37+
key: bundler-v2-{{ checksum "Gemfile.lock" }}
3838
paths:
3939
- vendor/bundle
4040

4141
# Cache Dependencies
4242
- type: cache-save
4343
name: Store bundle cache
44-
key: tutor_virtual-{{ checksum "Gemfile.lock" }}-v2
44+
key: tutor_virtual-v2-{{ checksum "Gemfile.lock" }}
4545
paths:
4646
- vendor/bundle
4747

@@ -53,7 +53,7 @@ jobs:
5353
- run: bundle update
5454

5555
- run: bundle exec rake db:create # creates the database
56-
- run: rake db:migrate
56+
- run: rails db:migrate
5757

5858
# Run the tests
5959
- run: rake test

0 commit comments

Comments
 (0)