From 26f73fe5f4c418d7c0883aba2b067cb2edf57ea9 Mon Sep 17 00:00:00 2001 From: JC Avena Date: Fri, 30 May 2025 13:38:05 -0500 Subject: [PATCH] Remove upper bound for railties. We want to try using this with Rails 8 app and it currently is limited to less than 8. We keep changing the upper limit when we have a new major version rails app, so we're going to remove it and figure out when it breaks. --- radius-rails.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radius-rails.gemspec b/radius-rails.gemspec index 5c1048c..7cbb2d4 100644 --- a/radius-rails.gemspec +++ b/radius-rails.gemspec @@ -18,7 +18,7 @@ Gem::Specification.new do |spec| spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] - spec.add_dependency "railties", ">= 3.2", "< 8.0" + spec.add_dependency "railties", ">= 3.2" spec.add_development_dependency "bundler", "~> 2.5" spec.add_development_dependency "rake", "~> 12.3.3" spec.add_development_dependency "activesupport"