From 65c209a35d84c951efd435c74b13fc372d170420 Mon Sep 17 00:00:00 2001 From: Stan Lo Date: Sun, 10 Sep 2023 14:44:07 +0100 Subject: [PATCH] Drop IRB's patch (#2104) * Revert "Pin irb to 1.7.4 for ruby 2.7 / rails 6.0.0 (#2097)" This reverts commit 74103eaf8594ccb6467b1728ae80231b00384b45. * Lock psych version to fit older Rails versions --- sentry-rails/Gemfile | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/sentry-rails/Gemfile b/sentry-rails/Gemfile index 6f6eb1ccc..17b7dc946 100644 --- a/sentry-rails/Gemfile +++ b/sentry-rails/Gemfile @@ -24,6 +24,7 @@ if rails_version > Gem::Version.new("7.0.0") gem "rails", github: "rails/rails" else gem "rails", "~> #{rails_version}" + gem "psych", "~> 3.0.0" end gem "mini_magick" @@ -47,12 +48,7 @@ gem "rake", "~> 12.0" if RUBY_VERSION.to_f >= 2.6 gem "debug", github: "ruby/debug", platform: :ruby - - if rails_version == Gem::Version.new("6.0.0") && RUBY_VERSION.to_f == 2.7 - gem "irb", "~> 1.7.4" # irb 1.8 adds psych via rdoc that causes CI to fail - else - gem "irb" - end + gem "irb" end gem "pry"