forked from kaminari/kaminari
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkaminari.gemspec
34 lines (28 loc) · 1.58 KB
/
kaminari.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# frozen_string_literal: true
$:.push File.expand_path("../lib", __FILE__)
require "kaminari/version"
Gem::Specification.new do |spec|
spec.name = 'kaminari-jets'
spec.version = Kaminari::FORK_VERSION # Kaminari::Core::FORK_VERSION not available here
spec.authors = ['Tung Nguyen']
spec.email = ['[email protected]']
# Keep original authors as comment. Give them credit but they're not maintaining this fork.
# spec.authors = ['Akira Matsuda', 'Yuki Nishijima', 'Zachary Scott', 'Hiroshi Shibata']
# spec.email = ['[email protected]']
spec.homepage = 'https://github.com/kaminari/kaminari'
spec.summary = 'A pagination engine plugin for Rails 4+ and other modern frameworks including Jets'
spec.description = 'Kaminari is a Scope & Engine based, clean, powerful, agnostic, customizable and sophisticated paginator for Rails 4+'
spec.license = "MIT"
spec.files = `git ls-files | egrep -v 'kaminari-(core|actionview|activerecord)' | grep -v '^test'`.split("\n")
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.0.0'
spec.add_dependency 'activesupport', '>= 4.1.0'
spec.add_dependency 'kaminari-jets-core', Kaminari::FORK_VERSION
spec.add_dependency 'kaminari-actionview', Kaminari::VERSION
spec.add_dependency 'kaminari-activerecord', Kaminari::VERSION
spec.add_development_dependency 'test-unit-rails'
spec.add_development_dependency 'bundler', '>= 1.0.0'
spec.add_development_dependency 'rake', '>= 0'
spec.add_development_dependency 'rr', '>= 0'
spec.add_development_dependency 'capybara', '>= 1.0'
end