lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb in rubysmith-5.8.1 vs lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb in rubysmith-5.9.0
- old
+ new
@@ -6,33 +6,33 @@
- image: bkuhlmann/alpine-ruby:latest
steps:
- checkout
- restore_cache:
- name: Bundler Restore
+ name: Gems Restore
keys:
- gem-cache-{{.Branch}}-{{checksum "Gemfile.lock"}}
- gem-cache-
- run:
- name: Bundler Install
+ name: Gems Install
command: |
gem update --system
bundle config set path "vendor/bundle"
bundle install
- save_cache:
- name: Bundler Store
+ name: Gems Store
key: gem-cache-{{.Branch}}-{{checksum "Gemfile.lock"}}
paths:
- vendor/bundle
- run:
name: Build
command: bundle exec rake
<% if configuration.build_simple_cov %>
- store_artifacts:
- name: SimpleCov Artifacts Upload
+ name: SimpleCov Report
path: ~/project/coverage
destination: coverage
<% end %>