Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add racc to gemspec #680

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby_version: [3.2, 3.1, "3.0", 2.7, 2.6, jruby]
ruby_version: [3.3, 3.2, 3.1, "3.0", 2.7, 2.6, jruby]
gemfile:
- Gemfile
- gemfiles/Gemfile.rails-5.2.x
Expand All @@ -26,6 +26,10 @@ jobs:
- gemfiles/Gemfile.rails-7.0.x
- gemfiles/Gemfile.rails-main
exclude:
# Ruby 3.3 is not supported by Rails 5.2.x
- ruby_version: 3.3
gemfile: gemfiles/Gemfile.rails-5.2.x

# Ruby 3.2 is not supported by Rails 5.2.x
- ruby_version: 3.2
gemfile: gemfiles/Gemfile.rails-5.2.x
Expand All @@ -38,6 +42,14 @@ jobs:
- ruby_version: "3.0"
gemfile: gemfiles/Gemfile.rails-5.2.x

# Ruby 3.0.x is not supported by Rails main
- ruby_version: "3.0"
gemfile: gemfiles/Gemfile.rails-main

# Ruby 2.7.x is not supported by Rails main
- ruby_version: 2.7
gemfile: gemfiles/Gemfile.rails-main

# Ruby 2.6.x is not supported by Rails main
- ruby_version: 2.6
gemfile: gemfiles/Gemfile.rails-main
Expand Down
1 change: 1 addition & 0 deletions i18n.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ Gem::Specification.new do |s|
s.required_rubygems_version = '>= 1.3.5'
s.required_ruby_version = '>= 2.3.0'

s.add_dependency 'racc'
s.add_dependency 'concurrent-ruby', '~> 1.0'

end