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

chore(deps): drop support for Ruby 3.0 #39

Merged
merged 1 commit into from
Oct 29, 2024
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

strategy:
matrix:
ruby: ['3.0', '3.1', '3.2', '3.3']
ruby: ['3.1', '3.2', '3.3']
rails: ['6.1', '7.0', '7.1']

env:
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ require:

AllCops:
NewCops: enable
TargetRubyVersion: 3.0
TargetRubyVersion: 3.1

Metrics/BlockLength:
Exclude:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This gem allows you to specify enum value translations in your I18n locale files
## Requirements

This gem only supports actively maintained versions of Ruby and Rails. Currently, that is:
* Ruby 3.0+
* Ruby 3.1+
* Rails 6.1+

It may work with older versions, but it is not officially supported.
Expand Down
2 changes: 1 addition & 1 deletion human_enum.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
spec.email = ['[email protected]']

# Should always be the lowest maintained version of Ruby
spec.required_ruby_version = '>= 3.0.0'
spec.required_ruby_version = '>= 3.1'

spec.summary = 'Adds simple and easy I18n support for Rails enums'
spec.description = 'This gem allows you to specify enum value translations
Expand Down