Skip to content

Commit

Permalink
Merge pull request #521 from kg8m/ruby31-and-rails7
Browse files Browse the repository at this point in the history
v2: support Ruby 3.1 and Rails 7.0 and 7.1
  • Loading branch information
kg8m authored Nov 16, 2024
2 parents c43215f + 3ebd638 commit ef7890c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,12 @@ jobs:
matrix:
ruby-version:
- "3.0"
- "3.1"
rails-version:
- "~> 6.0.0"
- "~> 6.1.0"
- "~> 7.0.0"
- "~> 7.1.0"
addressable-version:
- "~> 2.4.0"
- "~> 2.5.0"
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.6
3.1.6
4 changes: 2 additions & 2 deletions tanshuku.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
TXT
spec.homepage = "https://github.com/kg8m/tanshuku"
spec.license = "MIT"
spec.required_ruby_version = [">= 3.0", "< 3.1"]
spec.required_ruby_version = [">= 3.0", "< 3.2"]

spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
Expand All @@ -35,7 +35,7 @@ Gem::Specification.new do |spec|
spec.require_paths = ["lib"]

spec.add_dependency "addressable", ">= 2.4"
spec.add_dependency "rails", ">= 6.0", "< 7.0"
spec.add_dependency "rails", ">= 6.0", "< 7.2"

# For more information and examples about making a new gem, check out our
# guide at: https://bundler.io/guides/creating_gem.html
Expand Down

0 comments on commit ef7890c

Please sign in to comment.