summaryrefslogtreecommitdiff
path: root/Gemfile
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2018-10-25 09:50:36 -0700
committerTim Smith <tsmith@chef.io>2018-10-25 15:12:55 -0700
commitc9c35a9997d6ad9ecdbb0ee0a5f8bc7296b4ab40 (patch)
tree2046ea583d6d2655370c3a5135ffcf1d4f2c400a /Gemfile
parentb93e098a56696e4a58f2928d494b5f429cad5b97 (diff)
downloadchef-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--Gemfile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Gemfile b/Gemfile
index e4297fc063..91cf837a90 100644
--- a/Gemfile
+++ b/Gemfile
@@ -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"