Skip to content

Commit

Permalink
Merge 9b3868f into 67cfc1f
Browse files Browse the repository at this point in the history
  • Loading branch information
sue445 committed Apr 20, 2024
2 parents 67cfc1f + 9b3868f commit 0bbb705
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
7 changes: 7 additions & 0 deletions gemfiles/rails_4_0.gemfile
Expand Up @@ -3,6 +3,13 @@ source "https://rubygems.org"
gem "rails", "~> 4.0.0"
gem "sqlite3", "~> 1.3.6"

# activesupport uses `BigDecimal#initialize`, but this was removed bigdecimal v1.4.0
#
# c.f.
# * https://github.com/rails/rails/blob/v4.0.13/activesupport/lib/active_support/core_ext/object/duplicable.rb#L82
# * https://github.com/ruby/bigdecimal/blob/master/CHANGES.md#140
gem "bigdecimal", "< 1.4.0"

eval_gemfile "#{__dir__}/common.gemfile"

gemspec path: '../'
7 changes: 7 additions & 0 deletions gemfiles/rails_4_1.gemfile
Expand Up @@ -3,6 +3,13 @@ source "https://rubygems.org"
gem "rails", "~> 4.1.0"
gem "sqlite3", "~> 1.3.6"

# activesupport uses `BigDecimal#initialize`, but this was removed bigdecimal v1.4.0
#
# c.f.
# * https://github.com/rails/rails/blob/v4.1.16/activesupport/lib/active_support/core_ext/object/duplicable.rb#L82
# * https://github.com/ruby/bigdecimal/blob/master/CHANGES.md#140
gem "bigdecimal", "< 1.4.0"

eval_gemfile "#{__dir__}/common.gemfile"

gemspec path: '../'
7 changes: 7 additions & 0 deletions gemfiles/rails_4_2.gemfile
Expand Up @@ -3,6 +3,13 @@ source "https://rubygems.org"
gem "rails", "~> 4.2.0"
gem "sqlite3", "~> 1.3.6"

# activesupport uses `BigDecimal#initialize`, but this was removed bigdecimal v1.4.0
#
# c.f.
# * https://github.com/rails/rails/blob/v4.2.11.3/activesupport/lib/active_support/core_ext/object/duplicable.rb#L111
# * https://github.com/ruby/bigdecimal/blob/master/CHANGES.md#140
gem "bigdecimal", "< 1.4.0"

eval_gemfile "#{__dir__}/common.gemfile"

gemspec path: '../'

0 comments on commit 0bbb705

Please sign in to comment.