Skip to content

Commit

Permalink
Merge pull request #570 from kg8m/3-0/ruby3_4_and_rails8_0
Browse files Browse the repository at this point in the history
v3: don’t support Ruby 3.4 and Rails 8.0
  • Loading branch information
kg8m authored Dec 28, 2024
2 parents 8fed2ef + dc44048 commit 43cf180
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 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.1"
spec.required_ruby_version = [">= 3.1", "< 3.4"]

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

spec.add_dependency "addressable", ">= 2.4.0"
spec.add_dependency "rails", ">= 7.0.0"
spec.add_dependency "addressable", ">= 2.4"
spec.add_dependency "rails", ">= 7.0", "< 8.0"

# 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 43cf180

Please sign in to comment.