forked from mislav/will_paginate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
will_paginate.gemspec
22 lines (17 loc) · 949 Bytes
/
will_paginate.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# encoding: utf-8
require File.expand_path('../lib/will_paginate/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = 'will_paginate'
gem.version = WillPaginate::VERSION::STRING
gem.date = Time.now.strftime('%Y-%m-%d')
gem.summary = "Pagination for Rails"
gem.description = "The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates."
gem.authors = ['Mislav Marohnić', 'PJ Hyett']
gem.email = '[email protected]'
gem.homepage = 'http://github.com/mislav/will_paginate/wikis'
gem.rubyforge_project = nil
gem.has_rdoc = true
gem.rdoc_options = ['--main', 'README.rdoc', '--charset=UTF-8']
gem.extra_rdoc_files = ['README.rdoc', 'LICENSE', 'CHANGELOG.rdoc']
gem.files = Dir['Rakefile', '{bin,lib,rails,test,spec}/**/*', 'README*', 'LICENSE*'] & `git ls-files -z`.split("\0")
end