From b38f0d19f5cc4c4fe663ff9f5772de7f0780a3ac Mon Sep 17 00:00:00 2001 From: Claude Cake Date: Sun, 7 Sep 2025 23:55:12 +0800 Subject: [PATCH] feat: add Rails 8 compatibility MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update activerecord dependency to support >= 7.1.0, < 9.0 - Update activesupport dependency to support >= 7.1.0, < 9.0 - Maintains backward compatibility with Rails 7.1 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- pricing_plans.gemspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pricing_plans.gemspec b/pricing_plans.gemspec index e435685..a699e31 100644 --- a/pricing_plans.gemspec +++ b/pricing_plans.gemspec @@ -35,8 +35,8 @@ Gem::Specification.new do |spec| spec.require_paths = ["lib"] # Core dependencies - spec.add_dependency "activerecord", "~> 7.1", ">= 7.1.0" - spec.add_dependency "activesupport", "~> 7.1", ">= 7.1.0" + spec.add_dependency "activerecord", ">= 7.1.0", "< 9.0" + spec.add_dependency "activesupport", ">= 7.1.0", "< 9.0" # Development dependencies spec.add_development_dependency "bundler", "~> 2.0"