1
0
Fork 0
mirror of https://github.com/kaminari/kaminari.git synced 2022-11-09 13:44:37 -05:00

The main repo has been moved under kaminari organization

[ci skip]
This commit is contained in:
Akira Matsuda 2017-01-11 11:22:38 +09:00
parent e4364ff9b9
commit f7aa087c56
8 changed files with 12 additions and 12 deletions

View file

@ -484,7 +484,7 @@ gem 'kaminari-actionview'
Kaminari currently provides adapters for the following ORMs: Kaminari currently provides adapters for the following ORMs:
* Active Record: https://github.com/amatsuda/kaminari/tree/master/kaminari-activerecord (included in this repo) * Active Record: https://github.com/kaminari/kaminari/tree/master/kaminari-activerecord (included in this repo)
* Mongoid: https://github.com/kaminari/kaminari-mongoid * Mongoid: https://github.com/kaminari/kaminari-mongoid
* MongoMapper: https://github.com/kaminari/kaminari-mongo_mapper * MongoMapper: https://github.com/kaminari/kaminari-mongo_mapper
* DataMapper: https://github.com/kaminari/kaminari-data_mapper (would not work on kaminari 1.0.x) * DataMapper: https://github.com/kaminari/kaminari-data_mapper (would not work on kaminari 1.0.x)
@ -500,14 +500,14 @@ gem 'kaminari-sinatra'
Kaminari currently provides adapters for the following web frameworks: Kaminari currently provides adapters for the following web frameworks:
* Action View: https://github.com/amatsuda/kaminari/tree/master/kaminari-actionview (included in this repo) * Action View: https://github.com/kaminari/kaminari/tree/master/kaminari-actionview (included in this repo)
* Sinatra: https://github.com/kaminari/kaminari-sinatra * Sinatra: https://github.com/kaminari/kaminari-sinatra
* Grape: https://github.com/kaminari/kaminari-grape * Grape: https://github.com/kaminari/kaminari-grape
## For More Information ## For More Information
Check out Kaminari recipes on the GitHub Wiki for more advanced tips and techniques. https://github.com/amatsuda/kaminari/wiki/Kaminari-recipes Check out Kaminari recipes on the GitHub Wiki for more advanced tips and techniques. https://github.com/kaminari/kaminari/wiki/Kaminari-recipes
## Questions, Feedback ## Questions, Feedback

View file

@ -20,7 +20,7 @@ This gem is basically an internal gem that will be automatically bundled from ka
Or if you're using web frameworks other than Rails + Action View, you might need to explicitly bundle this gem. Or if you're using web frameworks other than Rails + Action View, you might need to explicitly bundle this gem.
See [Kaminari README (Other Framework/Library Support)](https://github.com/amatsuda/kaminari/blob/master/README.md#other-frameworklibrary-support) for details. See [Kaminari README (Other Framework/Library Support)](https://github.com/kaminari/kaminari/blob/master/README.md#other-frameworklibrary-support) for details.
## Contributing ## Contributing

View file

@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
spec.summary = 'Kaminari Action View adapter' spec.summary = 'Kaminari Action View adapter'
spec.description = 'kaminari-actionview provides pagination helpers for your Action View templates' spec.description = 'kaminari-actionview provides pagination helpers for your Action View templates'
spec.homepage = 'https://github.com/amatsuda/kaminari' spec.homepage = 'https://github.com/kaminari/kaminari'
spec.license = "MIT" spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }

View file

@ -20,11 +20,11 @@ This gem is basically an internal gem that will be automatically bundled from ka
Or if you're using ORMs other than Active Record, you might need to explicitly bundle this gem. Or if you're using ORMs other than Active Record, you might need to explicitly bundle this gem.
See [Kaminari README (Other Framework/Library Support)](https://github.com/amatsuda/kaminari/blob/master/README.md#other-frameworklibrary-support) for details. See [Kaminari README (Other Framework/Library Support)](https://github.com/kaminari/kaminari/blob/master/README.md#other-frameworklibrary-support) for details.
## Contributing ## Contributing
Pull requests are welcome on GitHub at https://github.com/amatsuda/kaminari. Pull requests are welcome on GitHub at https://github.com/kaminari/kaminari.
## License ## License

View file

@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
spec.summary = 'Kaminari Active Record adapter' spec.summary = 'Kaminari Active Record adapter'
spec.description = 'kaminari-activerecord lets your Active Record models be paginatable' spec.description = 'kaminari-activerecord lets your Active Record models be paginatable'
spec.homepage = 'https://github.com/amatsuda/kaminari' spec.homepage = 'https://github.com/kaminari/kaminari'
spec.license = "MIT" spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }

View file

@ -18,12 +18,12 @@ And bundle.
This gem is basically an internal gem that will be automatically bundled from kaminari gem or kaminari adapter gems. This gem is basically an internal gem that will be automatically bundled from kaminari gem or kaminari adapter gems.
See [Kaminari README](https://github.com/amatsuda/kaminari/blob/master/README.md) for the documentation. See [Kaminari README](https://github.com/kaminari/kaminari/blob/master/README.md) for the documentation.
## Contributing ## Contributing
Pull requests are welcome on GitHub at https://github.com/amatsuda/kaminari. Pull requests are welcome on GitHub at https://github.com/kaminari/kaminari.
## License ## License

View file

@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
spec.summary = "Kaminari's core pagination library" spec.summary = "Kaminari's core pagination library"
spec.description = 'kaminari-core includes pagination logic independent from ORMs and view libraries' spec.description = 'kaminari-core includes pagination logic independent from ORMs and view libraries'
spec.homepage = 'https://github.com/amatsuda/kaminari' spec.homepage = 'https://github.com/kaminari/kaminari'
spec.license = "MIT" spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }

View file

@ -8,7 +8,7 @@ Gem::Specification.new do |s|
s.version = Kaminari::VERSION s.version = Kaminari::VERSION
s.authors = ['Akira Matsuda', 'Yuki Nishijima', 'Zachary Scott', 'Hiroshi Shibata'] s.authors = ['Akira Matsuda', 'Yuki Nishijima', 'Zachary Scott', 'Hiroshi Shibata']
s.email = ['ronnie@dio.jp'] s.email = ['ronnie@dio.jp']
s.homepage = 'https://github.com/amatsuda/kaminari' s.homepage = 'https://github.com/kaminari/kaminari'
s.summary = 'A pagination engine plugin for Rails 4+ and other modern frameworks' s.summary = 'A pagination engine plugin for Rails 4+ and other modern frameworks'
s.description = 'Kaminari is a Scope & Engine based, clean, powerful, agnostic, customizable and sophisticated paginator for Rails 4+' s.description = 'Kaminari is a Scope & Engine based, clean, powerful, agnostic, customizable and sophisticated paginator for Rails 4+'
s.license = "MIT" s.license = "MIT"