Skip to content

Commit

Permalink
Update to support Rails 7 and above
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
marcusmyers committed Apr 9, 2024
1 parent ecc9360 commit 307934f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions interpret_date.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion lib/interpret_date/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module InterpretDate
VERSION = "1.3.5"
VERSION = "1.4.0"
end

0 comments on commit 307934f

Please sign in to comment.