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:
Akira Matsuda 2017-01-18 14:43:16 +09:00
parent ce9e84acc1
commit ac5aeb5cf0
3 changed files with 3 additions and 0 deletions

View File

@ -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"]

View File

@ -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"]

View File

@ -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"]