From b4a6e799e778454c897285348d5d79a0ba23ee9b Mon Sep 17 00:00:00 2001 From: Robert Mosolgo Date: Tue, 24 Mar 2020 16:02:01 -0400 Subject: [PATCH] Don't add pry-byebug on Ruby 2.3, where it's broken, see https://github.com/pry/pry/issues/2121 --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index c84786522e..e006afd08d 100644 --- a/Gemfile +++ b/Gemfile @@ -7,7 +7,7 @@ gem 'bootsnap' # required by the Rails apps generated in tests gem 'ruby-prof', platform: :ruby gem 'pry' gem 'pry-stack_explorer', platform: :ruby -if RUBY_VERSION >= "2.3" +if RUBY_VERSION >= "2.4" gem 'pry-byebug' end