mirror of
https://github.com/kaminari/kaminari.git
synced 2022-11-09 13:44:37 -05:00
All these internal gems also require ruby >= 2.0.0
since the kaminari gem is just a meta package, it's better be declared at this level (or maybe only kaminari-core is enough?)
This commit is contained in:
parent
ce9e84acc1
commit
ac5aeb5cf0
3 changed files with 3 additions and 0 deletions
|
@ -14,6 +14,7 @@ Gem::Specification.new do |spec|
|
|||
spec.description = 'kaminari-actionview provides pagination helpers for your Action View templates'
|
||||
spec.homepage = 'https://github.com/kaminari/kaminari'
|
||||
spec.license = "MIT"
|
||||
s.required_ruby_version = '>= 2.0.0'
|
||||
|
||||
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
||||
spec.require_paths = ["lib"]
|
||||
|
|
|
@ -14,6 +14,7 @@ Gem::Specification.new do |spec|
|
|||
spec.description = 'kaminari-activerecord lets your Active Record models be paginatable'
|
||||
spec.homepage = 'https://github.com/kaminari/kaminari'
|
||||
spec.license = "MIT"
|
||||
s.required_ruby_version = '>= 2.0.0'
|
||||
|
||||
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
||||
spec.require_paths = ["lib"]
|
||||
|
|
|
@ -14,6 +14,7 @@ Gem::Specification.new do |spec|
|
|||
spec.description = 'kaminari-core includes pagination logic independent from ORMs and view libraries'
|
||||
spec.homepage = 'https://github.com/kaminari/kaminari'
|
||||
spec.license = "MIT"
|
||||
s.required_ruby_version = '>= 2.0.0'
|
||||
|
||||
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
||||
spec.require_paths = ["lib"]
|
||||
|
|
Loading…
Reference in a new issue