Skip to content

Commit

Permalink
Add logger gem back into rails
Browse files Browse the repository at this point in the history
  • Loading branch information
Cawllec committed Jan 10, 2025
1 parent 79f0e84 commit 932346c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions spec/fixtures/apps/rails-initializer-config/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ ruby_version = Gem::Version.new(RUBY_VERSION.dup)
if ruby_version >= Gem::Version.new('3.4')
gem 'mutex_m', '0.3.0'
gem 'base64', '0.2.0'
gem 'logger', '1.6.5'
end

gem 'railties', ruby_version <= Gem::Version.new('2.6') ? '4.2.10' : '~> 6.0.2', require: %w(action_controller rails)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ ruby_version = Gem::Version.new(RUBY_VERSION.dup)
if ruby_version >= Gem::Version.new('3.4')
gem 'mutex_m', '0.3.0'
gem 'base64', '0.2.0'
gem 'logger', '1.6.5'
end

gem 'railties', ruby_version <= Gem::Version.new('2.6') ? '4.2.10' : '~> 6.0.2', require: %w(action_controller rails)
Expand Down
1 change: 1 addition & 0 deletions spec/fixtures/apps/rails-no-config/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ ruby_version = Gem::Version.new(RUBY_VERSION.dup)
if ruby_version >= Gem::Version.new('3.4')
gem 'mutex_m', '0.3.0'
gem 'base64', '0.2.0'
gem 'logger', '1.6.5'
end

gem 'railties', ruby_version <= Gem::Version.new('2.6') ? '4.2.10' : '~> 6.0.2', require: %w(action_controller rails)
Expand Down

0 comments on commit 932346c

Please sign in to comment.