mirror of
				https://github.com/kaminari/kaminari.git
				synced 2022-11-09 13:44:37 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
# -*- encoding: utf-8 -*-
 | 
						|
$:.push File.expand_path("../lib", __FILE__)
 | 
						|
require "kaminari/version"
 | 
						|
 | 
						|
Gem::Specification.new do |s|
 | 
						|
  s.name        = 'kaminari'
 | 
						|
  s.version     = Kaminari::VERSION
 | 
						|
  s.platform    = Gem::Platform::RUBY
 | 
						|
  s.authors     = ['Akira Matsuda', 'Yuki Nishijima', 'Zachary Scott', 'Hiroshi Shibata']
 | 
						|
  s.email       = ['ronnie@dio.jp']
 | 
						|
  s.homepage    = 'https://github.com/amatsuda/kaminari'
 | 
						|
  s.summary     = 'A pagination engine plugin for Rails 3+ and other modern frameworks'
 | 
						|
  s.description = 'Kaminari is a Scope & Engine based, clean, powerful, agnostic, customizable and sophisticated paginator for Rails 3+'
 | 
						|
 | 
						|
  s.rubyforge_project = 'kaminari'
 | 
						|
 | 
						|
  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 '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', ['~> 1.2.0']
 | 
						|
  s.add_development_dependency 'rdoc', ['>= 0']
 | 
						|
end
 |