pageable 2.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +45 -0
- data/Rakefile +34 -0
- data/app/views/pageable/_pager.html.erb +29 -0
- data/config/locales/en.yml +6 -0
- data/config/locales/es.yml +6 -0
- data/lib/pageable.rb +9 -0
- data/lib/pageable/action_view/base.rb +40 -0
- data/lib/pageable/active_record/base.rb +32 -0
- data/lib/pageable/active_record/relation.rb +78 -0
- data/lib/pageable/engine.rb +7 -0
- data/lib/pageable/railtie.rb +15 -0
- data/lib/pageable/version.rb +5 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/controllers/pages_controller.rb +7 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/models/model.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/app/views/pages/index.html.erb +1 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +23 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +29 -0
- data/test/dummy/config/environments/production.rb +80 -0
- data/test/dummy/config/environments/test.rb +36 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +12 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +5 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20130820024335_create_models.rb +9 -0
- data/test/dummy/db/schema.rb +22 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +284 -0
- data/test/dummy/log/test.log +4658 -0
- data/test/dummy/public/404.html +58 -0
- data/test/dummy/public/422.html +58 -0
- data/test/dummy/public/500.html +57 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/empty_test.rb +37 -0
- data/test/first_test.rb +38 -0
- data/test/last_test.rb +38 -0
- data/test/middle_test.rb +38 -0
- data/test/padding_test.rb +83 -0
- data/test/test_helper.rb +21 -0
- metadata +189 -0
metadata
ADDED
@@ -0,0 +1,189 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: pageable
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 2.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Mattways
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2013-08-20 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rails
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '>='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 3.0.0
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '>='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 3.0.0
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: sqlite3
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
description: Inspired in kaminari and will_paginate but more minimalistic.
|
42
|
+
email:
|
43
|
+
- contact@mattways.com
|
44
|
+
executables: []
|
45
|
+
extensions: []
|
46
|
+
extra_rdoc_files: []
|
47
|
+
files:
|
48
|
+
- app/views/pageable/_pager.html.erb
|
49
|
+
- config/locales/en.yml
|
50
|
+
- config/locales/es.yml
|
51
|
+
- lib/pageable/action_view/base.rb
|
52
|
+
- lib/pageable/active_record/base.rb
|
53
|
+
- lib/pageable/active_record/relation.rb
|
54
|
+
- lib/pageable/engine.rb
|
55
|
+
- lib/pageable/railtie.rb
|
56
|
+
- lib/pageable/version.rb
|
57
|
+
- lib/pageable.rb
|
58
|
+
- MIT-LICENSE
|
59
|
+
- Rakefile
|
60
|
+
- README.rdoc
|
61
|
+
- test/dummy/app/assets/javascripts/application.js
|
62
|
+
- test/dummy/app/assets/stylesheets/application.css
|
63
|
+
- test/dummy/app/controllers/application_controller.rb
|
64
|
+
- test/dummy/app/controllers/pages_controller.rb
|
65
|
+
- test/dummy/app/helpers/application_helper.rb
|
66
|
+
- test/dummy/app/models/model.rb
|
67
|
+
- test/dummy/app/views/layouts/application.html.erb
|
68
|
+
- test/dummy/app/views/pages/index.html.erb
|
69
|
+
- test/dummy/bin/bundle
|
70
|
+
- test/dummy/bin/rails
|
71
|
+
- test/dummy/bin/rake
|
72
|
+
- test/dummy/config/application.rb
|
73
|
+
- test/dummy/config/boot.rb
|
74
|
+
- test/dummy/config/database.yml
|
75
|
+
- test/dummy/config/environment.rb
|
76
|
+
- test/dummy/config/environments/development.rb
|
77
|
+
- test/dummy/config/environments/production.rb
|
78
|
+
- test/dummy/config/environments/test.rb
|
79
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
80
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
81
|
+
- test/dummy/config/initializers/inflections.rb
|
82
|
+
- test/dummy/config/initializers/mime_types.rb
|
83
|
+
- test/dummy/config/initializers/secret_token.rb
|
84
|
+
- test/dummy/config/initializers/session_store.rb
|
85
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
86
|
+
- test/dummy/config/locales/en.yml
|
87
|
+
- test/dummy/config/routes.rb
|
88
|
+
- test/dummy/config.ru
|
89
|
+
- test/dummy/db/development.sqlite3
|
90
|
+
- test/dummy/db/migrate/20130820024335_create_models.rb
|
91
|
+
- test/dummy/db/schema.rb
|
92
|
+
- test/dummy/db/test.sqlite3
|
93
|
+
- test/dummy/log/development.log
|
94
|
+
- test/dummy/log/test.log
|
95
|
+
- test/dummy/public/404.html
|
96
|
+
- test/dummy/public/422.html
|
97
|
+
- test/dummy/public/500.html
|
98
|
+
- test/dummy/public/favicon.ico
|
99
|
+
- test/dummy/Rakefile
|
100
|
+
- test/dummy/README.rdoc
|
101
|
+
- test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705
|
102
|
+
- test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af
|
103
|
+
- test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953
|
104
|
+
- test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994
|
105
|
+
- test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
|
106
|
+
- test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655
|
107
|
+
- test/empty_test.rb
|
108
|
+
- test/first_test.rb
|
109
|
+
- test/last_test.rb
|
110
|
+
- test/middle_test.rb
|
111
|
+
- test/padding_test.rb
|
112
|
+
- test/test_helper.rb
|
113
|
+
homepage: https://github.com/mattways/pageable
|
114
|
+
licenses:
|
115
|
+
- MIT
|
116
|
+
metadata: {}
|
117
|
+
post_install_message:
|
118
|
+
rdoc_options: []
|
119
|
+
require_paths:
|
120
|
+
- lib
|
121
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
122
|
+
requirements:
|
123
|
+
- - '>='
|
124
|
+
- !ruby/object:Gem::Version
|
125
|
+
version: '0'
|
126
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
127
|
+
requirements:
|
128
|
+
- - '>='
|
129
|
+
- !ruby/object:Gem::Version
|
130
|
+
version: '0'
|
131
|
+
requirements: []
|
132
|
+
rubyforge_project:
|
133
|
+
rubygems_version: 2.0.3
|
134
|
+
signing_key:
|
135
|
+
specification_version: 4
|
136
|
+
summary: Pagination for Rails.
|
137
|
+
test_files:
|
138
|
+
- test/dummy/app/assets/javascripts/application.js
|
139
|
+
- test/dummy/app/assets/stylesheets/application.css
|
140
|
+
- test/dummy/app/controllers/application_controller.rb
|
141
|
+
- test/dummy/app/controllers/pages_controller.rb
|
142
|
+
- test/dummy/app/helpers/application_helper.rb
|
143
|
+
- test/dummy/app/models/model.rb
|
144
|
+
- test/dummy/app/views/layouts/application.html.erb
|
145
|
+
- test/dummy/app/views/pages/index.html.erb
|
146
|
+
- test/dummy/bin/bundle
|
147
|
+
- test/dummy/bin/rails
|
148
|
+
- test/dummy/bin/rake
|
149
|
+
- test/dummy/config/application.rb
|
150
|
+
- test/dummy/config/boot.rb
|
151
|
+
- test/dummy/config/database.yml
|
152
|
+
- test/dummy/config/environment.rb
|
153
|
+
- test/dummy/config/environments/development.rb
|
154
|
+
- test/dummy/config/environments/production.rb
|
155
|
+
- test/dummy/config/environments/test.rb
|
156
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
157
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
158
|
+
- test/dummy/config/initializers/inflections.rb
|
159
|
+
- test/dummy/config/initializers/mime_types.rb
|
160
|
+
- test/dummy/config/initializers/secret_token.rb
|
161
|
+
- test/dummy/config/initializers/session_store.rb
|
162
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
163
|
+
- test/dummy/config/locales/en.yml
|
164
|
+
- test/dummy/config/routes.rb
|
165
|
+
- test/dummy/config.ru
|
166
|
+
- test/dummy/db/development.sqlite3
|
167
|
+
- test/dummy/db/migrate/20130820024335_create_models.rb
|
168
|
+
- test/dummy/db/schema.rb
|
169
|
+
- test/dummy/db/test.sqlite3
|
170
|
+
- test/dummy/log/development.log
|
171
|
+
- test/dummy/log/test.log
|
172
|
+
- test/dummy/public/404.html
|
173
|
+
- test/dummy/public/422.html
|
174
|
+
- test/dummy/public/500.html
|
175
|
+
- test/dummy/public/favicon.ico
|
176
|
+
- test/dummy/Rakefile
|
177
|
+
- test/dummy/README.rdoc
|
178
|
+
- test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705
|
179
|
+
- test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af
|
180
|
+
- test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953
|
181
|
+
- test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994
|
182
|
+
- test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
|
183
|
+
- test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655
|
184
|
+
- test/empty_test.rb
|
185
|
+
- test/first_test.rb
|
186
|
+
- test/last_test.rb
|
187
|
+
- test/middle_test.rb
|
188
|
+
- test/padding_test.rb
|
189
|
+
- test/test_helper.rb
|