From 4ffdce54ea2e1bae5594d36cd15f3173c0c5e9d0 Mon Sep 17 00:00:00 2001 From: "Marc A. Paradise" Date: Mon, 28 Jun 2021 13:43:57 -0400 Subject: [PATCH] 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 --- Gemfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Gemfile b/Gemfile index 4872842a5af..d012e2ab261 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