forked from ddnexus/pagy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added explicit pagy.manifest to comply with rubocop-packaging (see also
- Loading branch information
Showing
6 changed files
with
120 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
/.yardoc | ||
/_yardoc/ | ||
/coverage/ | ||
/pkg/ | ||
/tmp/ | ||
/docs/.jekyll-metadata | ||
/.idea/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,14 +6,14 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | |
require 'pagy' | ||
|
||
Gem::Specification.new do |s| | ||
s.name = 'pagy' | ||
s.version = Pagy::VERSION | ||
s.authors = ['Domizio Demichelis'] | ||
s.email = ['[email protected]'] | ||
s.summary = 'The Ultimate Pagination Ruby Gem' | ||
s.description = 'Agnostic pagination in plain ruby: it works with any framework, ORM and DB type, with all kinds of collections, even pre-paginated, scopes, Arrays, JSON data... Easy, powerful, fast and light.' | ||
s.homepage = 'https://github.com/ddnexus/pagy' | ||
s.license = 'MIT' | ||
s.files = `git ls-files -z`.split("\x0").select{|f| f.start_with?('lib', 'pagy.gemspec', 'LICENSE') } | ||
s.name = 'pagy' | ||
s.version = Pagy::VERSION | ||
s.authors = ['Domizio Demichelis'] | ||
s.email = ['[email protected]'] | ||
s.summary = 'The Ultimate Pagination Ruby Gem' | ||
s.description = 'Agnostic pagination in plain ruby: it works with any framework, ORM and DB type, with all kinds of collections, even pre-paginated, scopes, Arrays, JSON data... Easy, powerful, fast and light.' | ||
s.homepage = 'https://github.com/ddnexus/pagy' | ||
s.license = 'MIT' | ||
s.files = File.read('pagy.manifest').split | ||
s.required_ruby_version = ['>= 1.9', '< 3.0'] # rubocop:disable Gemspec/RequiredRubyVersion | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
lib/config/pagy.rb | ||
lib/javascripts/pagy.js | ||
lib/locales/bg.yml | ||
lib/locales/bs.yml | ||
lib/locales/ca.yml | ||
lib/locales/cs.yml | ||
lib/locales/da.yml | ||
lib/locales/de.yml | ||
lib/locales/en.yml | ||
lib/locales/es.yml | ||
lib/locales/fr.yml | ||
lib/locales/hr.yml | ||
lib/locales/id.yml | ||
lib/locales/it.yml | ||
lib/locales/ja.yml | ||
lib/locales/km.yml | ||
lib/locales/ko.yml | ||
lib/locales/nb.yml | ||
lib/locales/nl.yml | ||
lib/locales/pl.yml | ||
lib/locales/pt-BR.yml | ||
lib/locales/pt.yml | ||
lib/locales/ru.yml | ||
lib/locales/sr.yml | ||
lib/locales/sv-SE.yml | ||
lib/locales/sv.yml | ||
lib/locales/sw.yml | ||
lib/locales/tr.yml | ||
lib/locales/utils/i18n.rb | ||
lib/locales/utils/loader.rb | ||
lib/locales/utils/p11n.rb | ||
lib/locales/zh-CN.yml | ||
lib/locales/zh-HK.yml | ||
lib/locales/zh-TW.yml | ||
lib/pagy.rb | ||
lib/pagy/backend.rb | ||
lib/pagy/countless.rb | ||
lib/pagy/exceptions.rb | ||
lib/pagy/extras/arel.rb | ||
lib/pagy/extras/array.rb | ||
lib/pagy/extras/bootstrap.rb | ||
lib/pagy/extras/bulma.rb | ||
lib/pagy/extras/countless.rb | ||
lib/pagy/extras/elasticsearch_rails.rb | ||
lib/pagy/extras/foundation.rb | ||
lib/pagy/extras/headers.rb | ||
lib/pagy/extras/i18n.rb | ||
lib/pagy/extras/items.rb | ||
lib/pagy/extras/materialize.rb | ||
lib/pagy/extras/metadata.rb | ||
lib/pagy/extras/navs.rb | ||
lib/pagy/extras/overflow.rb | ||
lib/pagy/extras/pagy_search.rb | ||
lib/pagy/extras/searchkick.rb | ||
lib/pagy/extras/semantic.rb | ||
lib/pagy/extras/shared.rb | ||
lib/pagy/extras/support.rb | ||
lib/pagy/extras/trim.rb | ||
lib/pagy/extras/uikit.rb | ||
lib/pagy/frontend.rb | ||
lib/templates/bootstrap_nav.html.erb | ||
lib/templates/bootstrap_nav.html.haml | ||
lib/templates/bootstrap_nav.html.slim | ||
lib/templates/bulma_nav.html.erb | ||
lib/templates/bulma_nav.html.haml | ||
lib/templates/bulma_nav.html.slim | ||
lib/templates/foundation_nav.html.erb | ||
lib/templates/foundation_nav.html.haml | ||
lib/templates/foundation_nav.html.slim | ||
lib/templates/nav.html.erb | ||
lib/templates/nav.html.haml | ||
lib/templates/nav.html.slim | ||
lib/templates/uikit_nav.html.erb | ||
lib/templates/uikit_nav.html.haml | ||
lib/templates/uikit_nav.html.slim | ||
LICENSE.txt |