Skip to content

Commit

Permalink
racc has been extracted to a gem since Ruby 3.3
Browse files Browse the repository at this point in the history
see: https://bugs.ruby-lang.org/issues/19702

This fixes CI failures on Ruby 3.3 with the following error:
cannot load such file -- racc/parser (LoadError)

e.g.
https://github.com/ruby-i18n/i18n/actions/runs/8179356458/job/22365256416
  • Loading branch information
amatsuda committed Mar 13, 2024
1 parent 74258ad commit bef6c30
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ gem 'test_declarative', '0.0.6'
gem 'rake', '~> 13'
gem 'minitest', '~> 5.14'
gem 'json'
gem 'racc'
1 change: 1 addition & 0 deletions gemfiles/Gemfile.rails-6.0.x
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ gem 'mocha', '~> 2.1.0'
gem 'test_declarative', '0.0.6'
gem 'rake'
gem 'minitest', '~> 5.14'
gem 'racc'

platforms :mri do
gem 'oj'
Expand Down
1 change: 1 addition & 0 deletions gemfiles/Gemfile.rails-6.1.x
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ gem 'mocha', '~> 2.1.0'
gem 'test_declarative', '0.0.6'
gem 'rake'
gem 'minitest', '~> 5.14'
gem 'racc'

platforms :mri do
gem 'oj'
Expand Down
1 change: 1 addition & 0 deletions gemfiles/Gemfile.rails-7.0.x
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ gem 'mocha', '~> 2.1.0'
gem 'test_declarative', '0.0.6'
gem 'rake'
gem 'minitest', '~> 5.14'
gem 'racc'

platforms :mri do
gem 'oj'
Expand Down
1 change: 1 addition & 0 deletions gemfiles/Gemfile.rails-7.1.x
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ gem 'mocha', '~> 2'
gem 'test_declarative', '0.0.6'
gem 'rake'
gem 'minitest', '~> 5.14'
gem 'racc'

platforms :mri do
gem 'oj'
Expand Down
1 change: 1 addition & 0 deletions gemfiles/Gemfile.rails-main
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ gem 'mocha', '~> 2.1.0'
gem 'test_declarative', '0.0.6'
gem 'rake'
gem 'minitest', '~> 5.1'
gem 'racc'

platforms :mri do
gem 'oj'
Expand Down

0 comments on commit bef6c30

Please sign in to comment.