From 307934fbbd6121cabe5ff54b4cc0ec0948921f77 Mon Sep 17 00:00:00 2001 From: Mark Myers Date: Tue, 9 Apr 2024 15:08:54 -0400 Subject: [PATCH] Update to support Rails 7 and above This commit updates the rails dependencies to support rails 7 and above. As part of this update bundler and rake were also updated. [1205854219658133](https://app.asana.com/0/0/1205854219658133/f) --- interpret_date.gemspec | 6 +++--- lib/interpret_date/version.rb | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/interpret_date.gemspec b/interpret_date.gemspec index 041444d..2c8047a 100644 --- a/interpret_date.gemspec +++ b/interpret_date.gemspec @@ -18,8 +18,8 @@ Gem::Specification.new do |spec| spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] - spec.add_runtime_dependency 'activerecord', ['>= 5.1', '< 7'] - spec.add_development_dependency "bundler", "~> 1.6" - spec.add_development_dependency "rake", "~> 12" + spec.add_runtime_dependency 'activerecord', '>= 7' + spec.add_development_dependency "bundler", "~> 2.4" + spec.add_development_dependency "rake", "~> 13" spec.add_development_dependency "rspec", "~> 3.2" end diff --git a/lib/interpret_date/version.rb b/lib/interpret_date/version.rb index a07671e..73a690c 100644 --- a/lib/interpret_date/version.rb +++ b/lib/interpret_date/version.rb @@ -1,3 +1,3 @@ module InterpretDate - VERSION = "1.3.5" + VERSION = "1.4.0" end