Sha256: ae4a7f08a6ca18ae60488e5131ea5a1b5d8e3e2523e8f4a6e870f6e7c7b4ac2d

Contents?: true

Size: 1.24 KB

Versions: 3

Compression:

Stored size: 1.24 KB

Contents

lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'pagy'
require 'date'

Gem::Specification.new do |s|
  s.name          = 'pagy'
  s.version       = Pagy::VERSION
  s.authors       = ['Domizio Demichelis']
  s.email         = ['dd.nexus@gmail.com']
  s.date          = Date.today.to_s

  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... and just whatever you can count. Easy to use and customize, very fast and very light.'
  s.homepage      = 'https://github.com/ddnexus/pagy'
  s.license       = 'MIT'
  s.require_paths = ['lib']

  s.files         = `git ls-files -z`.split("\x0").select{|f| f.start_with?('lib', 'pagy.gemspec', 'LICENSE') }


  s.add_development_dependency 'bundler',  '~> 1.16'
  s.add_development_dependency 'rake',     '~> 10.0'
  s.add_development_dependency 'minitest', '~> 5.0'
  s.add_development_dependency 'slim'
  s.add_development_dependency 'haml'
  s.add_development_dependency 'benchmark-ips'
  s.add_development_dependency 'kalibera'
  s.add_development_dependency 'memory_profiler'

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
pagy-0.7.1 pagy.gemspec
pagy-0.7.0 pagy.gemspec
pagy-0.6.0 pagy.gemspec