summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2020-04-20 21:22:26 -0700
committerTim Smith <tsmith84@gmail.com>2020-04-20 21:22:26 -0700
commit49e29aefae347cf0d9aabeef65270f8910742090 (patch)
tree9fc1417be4719939b25dd279d0181c5dafa050fa
parentc0e5919c4dda94ec468165d5a21fcba2186c4994 (diff)
downloadchef-49e29aefae347cf0d9aabeef65270f8910742090.tar.gz
Avoid double pry by pinning to the exact versionavoid_double_pry
It's in the gemfile.lock once, but we're ending up with 0.12.2 and 0.13 which is super odd. Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--Gemfile4
-rw-r--r--Gemfile.lock4
2 files changed, 4 insertions, 4 deletions
diff --git a/Gemfile b/Gemfile
index 7a9faae768..24b183a943 100644
--- a/Gemfile
+++ b/Gemfile
@@ -33,8 +33,8 @@ group(:omnibus_package) do
end
group(:omnibus_package, :pry) do
- gem "pry"
- gem "pry-byebug"
+ gem "pry", "=0.12.2" # we ended up with double pry before. Confirm that doesn't come back when bumping ruby & adjust
+ gem "pry-byebug", "=3.8.0" # we ended up with double pry-byebug before. Confirm that doesn't come back when bumping ruby & adjust
gem "pry-remote"
gem "pry-stack_explorer"
end
diff --git a/Gemfile.lock b/Gemfile.lock
index 1e4aa02dce..d34889184d 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -472,8 +472,8 @@ DEPENDENCIES
inspec-core (~> 4.18)
inspec-core-bin (~> 4.18)
ohai!
- pry
- pry-byebug
+ pry (= 0.12.2)
+ pry-byebug (= 3.8.0)
pry-remote
pry-stack_explorer
rake (<= 13.0.1)