Skip to content

Commit

Permalink
Set minumal version for gem dependecies
Browse files Browse the repository at this point in the history
Fixes #3.
  • Loading branch information
stgeneral committed Aug 17, 2024
1 parent 1060ce6 commit 9594e9a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ PATH
remote: .
specs:
auxiliary_rails_resourceable (0.1.2)
pagy
pundit
pagy (>= 6.0.4)
pundit (>= 2.2)
rails (>= 5.2)
ransack
ransack (>= 3.0.0)

GEM
remote: https://rubygems.org/
Expand Down
6 changes: 3 additions & 3 deletions auxiliary_rails_resourceable.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']

spec.add_dependency 'pagy'
spec.add_dependency 'pundit'
spec.add_dependency 'pagy', '>= 6.0.4'
spec.add_dependency 'pundit', '>= 2.2'
spec.add_dependency 'rails', '>= 5.2'
spec.add_dependency 'ransack'
spec.add_dependency 'ransack', '>= 3.0.0'
end

0 comments on commit 9594e9a

Please sign in to comment.