Skip to content

Commit

Permalink
Add support for Ruby 3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
anaulin committed May 21, 2024
1 parent 5046265 commit db6653a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby_version: ["2.7.5", "3.0.3", "3.1.0", "3.2.0"]
ruby_version: ["2.7.5", "3.0.3", "3.1.0", "3.2.0", "3.3.0"]
active_record_version: ["6.0", "6.1", "7.0", "7.1"]
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion acts_as_hashids.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
spec.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
spec.require_paths = ['lib']

spec.required_ruby_version = ['>= 2.3.0', '< 3.3']
spec.required_ruby_version = ['>= 2.3.0', '< 4.0']

spec.add_runtime_dependency 'activerecord', '>= 4.0', '< 8.0'
spec.add_runtime_dependency 'hashids', '~> 1.0'
Expand Down

0 comments on commit db6653a

Please sign in to comment.