diff options
author | Marc A. Paradise <marc.paradise@gmail.com> | 2021-06-28 13:43:57 -0400 |
---|---|---|
committer | Marc A. Paradise <marc.paradise@gmail.com> | 2021-06-28 17:59:12 -0400 |
commit | c8dcb9d4985a14e779ff4bc47e9ce740a28bb2dd (patch) | |
tree | 218311a50c245f9ba5d00bf74663ef9751198a3d /Gemfile | |
parent | 79f818176f5b71169637ff5b8d3fe04eedf0f087 (diff) | |
download | chef-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-- | Gemfile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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 |