Skip to content

Commit

Permalink
Pin irb to 1.7.4 for ruby 2.7 / rails 6.0.0 (#2097)
Browse files Browse the repository at this point in the history
  • Loading branch information
sl0thentr0py authored Aug 31, 2023
1 parent 86dfaea commit 74103ea
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion sentry-rails/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,12 @@ gem "rake", "~> 12.0"

if RUBY_VERSION.to_f >= 2.6
gem "debug", github: "ruby/debug", platform: :ruby
gem "irb"

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
end

gem "pry"
Expand Down

0 comments on commit 74103ea

Please sign in to comment.