# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "bootstrap_pager/version" Gem::Specification.new do |s| s.name = 'bootstrap_pager' s.version = BootstrapPager::VERSION s.platform = Gem::Platform::RUBY s.authors = ['Karen Lundgren'] s.email = ['karen.e.lundgren@gmail.com'] s.homepage = 'http://www.gemvein.com/museum/cases/bootstrap_pager' s.summary = 'A pagination engine plugin for Rails 3+ or other modern frameworks. Now with more shiny, including infinite paging, bootstrap integration, and the ability to use it within an engine.' s.description = 'Like its ancestor Kaminari, BootstrapPager is a Scope & Engine based, clean, powerful, agnostic, customizable and sophisticated paginator for Rails 3+. Now with more shiny, including infinite paging, bootstrap integration, and the ability to use it within an engine. ' s.rubyforge_project = 'bootstrap_pager' s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.extra_rdoc_files = ['README.rdoc'] s.require_paths = ['lib'] s.licenses = ['MIT'] s.add_dependency 'activesupport', ['>= 3.0.0'] s.add_dependency 'actionpack', ['>= 3.0.0'] s.add_development_dependency 'bundler', ['>= 1.0.0'] s.add_development_dependency 'rake', ['>= 0'] s.add_development_dependency 'sqlite3', ['>= 0'] s.add_development_dependency 'tzinfo', ['>= 0'] s.add_development_dependency 'rspec', ['>= 0'] s.add_development_dependency 'rr', ['>= 0'] s.add_development_dependency 'capybara', ['>= 1.0'] s.add_development_dependency 'database_cleaner', ['>= 0'] s.add_development_dependency 'rdoc', ['>= 0'] s.add_development_dependency 'coveralls', ['>= 0'] end