summaryrefslogtreecommitdiff
path: root/Gemfile
diff options
context:
space:
mode:
authorMarc A. Paradise <marc.paradise@gmail.com>2021-06-28 13:43:57 -0400
committerMarc A. Paradise <marc.paradise@gmail.com>2021-06-28 17:59:12 -0400
commitc8dcb9d4985a14e779ff4bc47e9ce740a28bb2dd (patch)
tree218311a50c245f9ba5d00bf74663ef9751198a3d /Gemfile
parent79f818176f5b71169637ff5b8d3fe04eedf0f087 (diff)
downloadchef-c8dcb9d4985a14e779ff4bc47e9ce740a28bb2dd.tar.gz
Lock `pry` to 0.13.0
This permits `pry-byebug` to continue working with it, until either https://github.com/pry/pry/pull/2177 is merged, or https://github.com/deivid-rodriguez/pry-byebug/issues/343 is otherwise resolved. Signed-off-by: Marc A. Paradise <marc.paradise@gmail.com>
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Gemfile b/Gemfile
index 4872842a5a..d012e2ab26 100644
--- a/Gemfile
+++ b/Gemfile
@@ -25,9 +25,10 @@ group(:omnibus_package) do
end
group(:omnibus_package, :pry) do
- gem "pry"
+ gem "pry", "= 0.13.0" # Locked because pry-byebug is broken with 13+
+ # some work is ongoing? https://github.com/deivid-rodriguez/pry-byebug/issues/343
# byebug does not install on freebsd on ruby 3.0
- # gem "pry-byebug"
+ gem "pry-byebug" unless RUBY_PLATFORM =~ /freebsd/i
gem "pry-stack_explorer"
end