public
Description: Adaptive pagination plugin for web frameworks and other applications
Homepage: http://github.com/mislav/will_paginate/wikis
Clone URL: git://github.com/mislav/will_paginate.git
Click here to lend your support to: will_paginate and make a donation at www.pledgie.com !
will_paginate / will_paginate.gemspec
100644 21 lines (15 sloc) 0.858 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'lib/will_paginate/version'
 
Gem::Specification.new do |s|
  s.name = 'will_paginate'
  s.version = WillPaginate::VERSION::STRING
  s.date = '2009-11-06'
  
  s.summary = "Adaptive pagination plugin for web frameworks and other applications"
  s.description = "The will_paginate library provides a simple, yet powerful and extensible API for pagination and rendering of page links in web application templates."
  
  s.authors = ['Mislav Marohnić', 'PJ Hyett']
  s.email = 'mislav.marohnic@gmail.com'
  s.homepage = 'http://github.com/mislav/will_paginate/wikis'
  
  s.has_rdoc = true
  s.rdoc_options = ['--main', 'README.rdoc', '--charset=UTF-8']
  s.extra_rdoc_files = ['README.rdoc', 'LICENSE', 'CHANGELOG.rdoc']
  
  s.files = Dir['Rakefile', '{bin,lib,rails,test,spec}/**/*', 'README*', 'LICENSE*'] & `git ls-files`.split("\n")
end