Skip to content

Commit

Permalink
Fix Ruby version requirement
Browse files Browse the repository at this point in the history
This library depends on AR/AS 6.1, which require Ruby 2.5

Close #431
  • Loading branch information
tagliala committed Jun 3, 2024
1 parent 7624f44 commit 6cab186
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion acts_as_list.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Gem::Specification.new do |s|
s.summary = "A gem adding sorting, reordering capabilities to an active_record model, allowing it to act as a list"
s.description = 'This "acts_as" extension provides the capabilities for sorting and reordering a number of objects in a list. The class that has this specified needs to have a "position" column defined as an integer on the mapped database table.'
s.license = "MIT"
s.required_ruby_version = ">= 2.4.7"
s.required_ruby_version = ">= 2.5"

if s.respond_to?(:metadata)
s.metadata['changelog_uri'] = 'https://github.com/brendon/acts_as_list/blob/master/CHANGELOG.md'
Expand Down

0 comments on commit 6cab186

Please sign in to comment.