Skip to content

Commit

Permalink
Merge pull request #3154 from robinboening/fix_ci
Browse files Browse the repository at this point in the history
fix missing logger issue in github actions
  • Loading branch information
tvdeyen authored Jan 22, 2025
2 parents 2da013b + 67adb9a commit da7e8f0
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,13 @@ group :development, :test do
if rails_version == "7.1"
gem "actioncable", "~> #{rails_version}.0"
end

# concurrent-ruby v1.3.5 has removed the dependency on logger,
# effecting Rails 6.1 up to including 7.0.
# https://github.com/rails/rails/pull/54264
if ("6.1".to_f.."7.0".to_f).cover?(rails_version.to_f)
gem "concurrent-ruby", "< 1.3.5"
end
else
gem "launchy"
gem "annotate"
Expand Down

0 comments on commit da7e8f0

Please sign in to comment.