Skip to content

Commit

Permalink
chore(deps): drop support for Ruby 3.0 (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
rafasoares authored Oct 29, 2024
1 parent 0529487 commit ac54b8c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
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

0 comments on commit ac54b8c

Please sign in to comment.