Skip to content

Commit

Permalink
avoid error between rails and concurrent-ruby
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronLasseigne committed Feb 2, 2025
1 parent 063fd5d commit d10f76f
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 0 deletions.
3 changes: 3 additions & 0 deletions gemfiles/rails-5.2.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,6 @@ gemspec path: '..'
gem 'activemodel', '~> 5.2.0'
gem 'activerecord', '~> 5.2.0'
gem 'sqlite3', '~> 1.3.13'

# Fixes uninitialized constant ActiveSupport::LoggerThreadSafeLevel::Logger (NameError)
gem 'concurrent-ruby', '< 1.3.5'
3 changes: 3 additions & 0 deletions gemfiles/rails-6.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,6 @@ gemspec path: '..'
gem 'activemodel', '~> 6.0.0'
gem 'activerecord', '~> 6.0.0'
gem 'sqlite3', '~> 1.4.1'

# Fixes uninitialized constant ActiveSupport::LoggerThreadSafeLevel::Logger (NameError)
gem 'concurrent-ruby', '< 1.3.5'
3 changes: 3 additions & 0 deletions gemfiles/rails-6.1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,6 @@ gemspec path: '..'
gem 'activemodel', '~> 6.1.0'
gem 'activerecord', '~> 6.1.0'
gem 'sqlite3', '~> 1.4.1'

# Fixes uninitialized constant ActiveSupport::LoggerThreadSafeLevel::Logger (NameError)
gem 'concurrent-ruby', '< 1.3.5'
3 changes: 3 additions & 0 deletions gemfiles/rails-7.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,6 @@ gemspec path: '..'
gem 'activemodel', '~> 7.0.1'
gem 'activerecord', '~> 7.0.1'
gem 'sqlite3', '~> 1.4.1'

# Fixes uninitialized constant ActiveSupport::LoggerThreadSafeLevel::Logger (NameError)
gem 'concurrent-ruby', '< 1.3.5'
3 changes: 3 additions & 0 deletions gemfiles/rails-7.1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,6 @@ gemspec path: '..'
gem 'activemodel', '~> 7.1.0'
gem 'activerecord', '~> 7.1.0'
gem 'sqlite3', '~> 1.7.3'

# Fixes uninitialized constant ActiveSupport::LoggerThreadSafeLevel::Logger (NameError)
gem 'concurrent-ruby', '< 1.3.5'
3 changes: 3 additions & 0 deletions gemfiles/rails-7.2.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,6 @@ gemspec path: '..'
gem 'activemodel', '~> 7.2.0'
gem 'activerecord', '~> 7.2.0'
gem 'sqlite3', '~> 1.7.3'

# Fixes uninitialized constant ActiveSupport::LoggerThreadSafeLevel::Logger (NameError)
gem 'concurrent-ruby', '< 1.3.5'
3 changes: 3 additions & 0 deletions gemfiles/rails-8.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,6 @@ gemspec path: '..'
gem 'activemodel', '~> 8.0.0'
gem 'activerecord', '~> 8.0.0'
gem 'sqlite3', '>= 2.1'

# Fixes uninitialized constant ActiveSupport::LoggerThreadSafeLevel::Logger (NameError)
gem 'concurrent-ruby', '< 1.3.5'

0 comments on commit d10f76f

Please sign in to comment.