diff options
author | Tim Smith <tsmith@chef.io> | 2018-10-25 09:50:36 -0700 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2018-10-25 15:12:55 -0700 |
commit | c9c35a9997d6ad9ecdbb0ee0a5f8bc7296b4ab40 (patch) | |
tree | 2046ea583d6d2655370c3a5135ffcf1d4f2c400a /Gemfile | |
parent | b93e098a56696e4a58f2928d494b5f429cad5b97 (diff) | |
download | chef-c9c35a9997d6ad9ecdbb0ee0a5f8bc7296b4ab40.tar.gz |
Pin rake to 12.3.0 to prevent installing 2 copies in our install
We install 12.3.0 from the ruby 2.5 source. This prevents us from installing both 12.3.0 and 12.3.1
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -47,7 +47,10 @@ group(:ruby_shadow) do end group(:development, :test) do - gem "rake" + # we pin rake as a copy of rake is installed from the ruby source + # if you bump the ruby version you should confirm we don't end up with + # two rake gems installed again + gem "rake", "<= 12.3.0" gem "simplecov" gem "webmock" |