forked from ddnexus/pagy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pagy.gemspec
16 lines (15 loc) · 842 Bytes
/
pagy.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'pagy'
Gem::Specification.new do |s|
s.name = 'pagy'
s.version = Pagy::VERSION
s.authors = ['Domizio Demichelis']
s.email = ['[email protected]']
s.summary = 'The Ultimate Pagination Ruby Gem'
s.description = 'Agnostic pagination in plain ruby: it works with any framework, ORM and DB type, with all kinds of collections, even pre-paginated, scopes, Arrays, JSON data... Easy, powerful, fast and light.'
s.homepage = 'https://github.com/ddnexus/pagy'
s.license = 'MIT'
s.files = `git ls-files -z`.split("\x0").select{|f| f.start_with?('lib', 'pagy.gemspec', 'LICENSE') }
s.required_ruby_version = '>= 1.9' # rubocop:disable Gemspec/RequiredRubyVersion
end