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. As part
of this commit the version constraints on the other gems were removed in
order to support all versions of rails under version 7.
  • Loading branch information
marcusmyers committed Apr 10, 2024
1 parent ecc9360 commit 12180ec
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 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_development_dependency "rspec", "~> 3.2"
spec.add_runtime_dependency 'activerecord', '<= 7'
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec"
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.3.6"
end

0 comments on commit 12180ec

Please sign in to comment.