summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorFrank Lam <ryzingsun11@yahoo.com>2020-06-03 22:00:17 +0800
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2020-06-18 19:14:15 +0900
commit1a9a4f962e9d91940986b990a5c72305056f1e3a (patch)
tree8acddb8d0e011ab9e3c0b4a82056c1a6744819c2 /lib
parentf6c8ca03595ba7e105e0e0d56e075babca70b5bd (diff)
[rubygems/rubygems] Fix nonexistent constant in CircleCI template
Co-authored-by: David Rodríguez <deivid.rodriguez@riseup.net> https://github.com/rubygems/rubygems/commit/851f8afad1
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/3212
Diffstat (limited to 'lib')
-rw-r--r--lib/bundler/templates/newgem/.circleci/config.yml.tt2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/templates/newgem/.circleci/config.yml.tt b/lib/bundler/templates/newgem/.circleci/config.yml.tt
index 660943a3df..7430bb5583 100644
--- a/lib/bundler/templates/newgem/.circleci/config.yml.tt
+++ b/lib/bundler/templates/newgem/.circleci/config.yml.tt
@@ -8,6 +8,6 @@ jobs:
- run:
name: Run tests
command: |
- gem install bundler -v <%= Bundler::Version %>
+ gem install bundler -v <%= Bundler::VERSION %>
bundle install
bundle exec rake test