Skip to content

Commit

Permalink
Drop IRB's patch (#2104)
Browse files Browse the repository at this point in the history
* Revert "Pin irb to 1.7.4 for ruby 2.7 / rails 6.0.0 (#2097)"

This reverts commit 74103ea.

* Lock psych version to fit older Rails versions
  • Loading branch information
st0012 authored Sep 10, 2023
1 parent 97da98c commit 65c209a
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions sentry-rails/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
Expand Down

0 comments on commit 65c209a

Please sign in to comment.