pb-will_paginate 2.3.12
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +4 -0
- data/.manifest +43 -0
- data/CHANGELOG.rdoc +139 -0
- data/LICENSE +18 -0
- data/README.rdoc +107 -0
- data/Rakefile +71 -0
- data/VERSION +1 -0
- data/examples/apple-circle.gif +0 -0
- data/examples/index.haml +69 -0
- data/examples/index.html +92 -0
- data/examples/pagination.css +90 -0
- data/examples/pagination.sass +91 -0
- data/init.rb +2 -0
- data/lib/will_paginate.rb +90 -0
- data/lib/will_paginate/array.rb +16 -0
- data/lib/will_paginate/collection.rb +144 -0
- data/lib/will_paginate/core_ext.rb +43 -0
- data/lib/will_paginate/finder.rb +264 -0
- data/lib/will_paginate/i18n.rb +178 -0
- data/lib/will_paginate/named_scope.rb +170 -0
- data/lib/will_paginate/named_scope_patch.rb +37 -0
- data/lib/will_paginate/version.rb +9 -0
- data/lib/will_paginate/view_helpers.rb +397 -0
- data/locales/en.yml +11 -0
- data/pb-will_paginate.gemspec +106 -0
- data/test/boot.rb +21 -0
- data/test/collection_test.rb +143 -0
- data/test/console +8 -0
- data/test/database.yml +22 -0
- data/test/finder_test.rb +473 -0
- data/test/fixtures/admin.rb +3 -0
- data/test/fixtures/developer.rb +14 -0
- data/test/fixtures/developers_projects.yml +13 -0
- data/test/fixtures/project.rb +15 -0
- data/test/fixtures/projects.yml +6 -0
- data/test/fixtures/replies.yml +29 -0
- data/test/fixtures/reply.rb +7 -0
- data/test/fixtures/schema.rb +38 -0
- data/test/fixtures/topic.rb +10 -0
- data/test/fixtures/topics.yml +30 -0
- data/test/fixtures/user.rb +2 -0
- data/test/fixtures/users.yml +35 -0
- data/test/helper.rb +37 -0
- data/test/i18n_test.rb +194 -0
- data/test/lib/activerecord_test_case.rb +43 -0
- data/test/lib/activerecord_test_connector.rb +75 -0
- data/test/lib/load_fixtures.rb +11 -0
- data/test/lib/view_test_process.rb +179 -0
- data/test/tasks.rake +59 -0
- data/test/view_test.rb +289 -0
- metadata +122 -0
metadata
ADDED
@@ -0,0 +1,122 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: pb-will_paginate
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 2.3.12
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- "Mislav Marohni\xC4\x87"
|
8
|
+
- PJ Hyett
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
|
13
|
+
date: 2010-02-01 00:00:00 +01:00
|
14
|
+
default_executable:
|
15
|
+
dependencies: []
|
16
|
+
|
17
|
+
description: The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates.
|
18
|
+
email: mislav.marohnic@gmail.com
|
19
|
+
executables: []
|
20
|
+
|
21
|
+
extensions: []
|
22
|
+
|
23
|
+
extra_rdoc_files:
|
24
|
+
- LICENSE
|
25
|
+
- README.rdoc
|
26
|
+
files:
|
27
|
+
- .gitignore
|
28
|
+
- .manifest
|
29
|
+
- CHANGELOG.rdoc
|
30
|
+
- LICENSE
|
31
|
+
- README.rdoc
|
32
|
+
- Rakefile
|
33
|
+
- VERSION
|
34
|
+
- examples/apple-circle.gif
|
35
|
+
- examples/index.haml
|
36
|
+
- examples/index.html
|
37
|
+
- examples/pagination.css
|
38
|
+
- examples/pagination.sass
|
39
|
+
- init.rb
|
40
|
+
- lib/will_paginate.rb
|
41
|
+
- lib/will_paginate/array.rb
|
42
|
+
- lib/will_paginate/collection.rb
|
43
|
+
- lib/will_paginate/core_ext.rb
|
44
|
+
- lib/will_paginate/finder.rb
|
45
|
+
- lib/will_paginate/i18n.rb
|
46
|
+
- lib/will_paginate/named_scope.rb
|
47
|
+
- lib/will_paginate/named_scope_patch.rb
|
48
|
+
- lib/will_paginate/version.rb
|
49
|
+
- lib/will_paginate/view_helpers.rb
|
50
|
+
- locales/en.yml
|
51
|
+
- pb-will_paginate.gemspec
|
52
|
+
- test/boot.rb
|
53
|
+
- test/collection_test.rb
|
54
|
+
- test/console
|
55
|
+
- test/database.yml
|
56
|
+
- test/finder_test.rb
|
57
|
+
- test/fixtures/admin.rb
|
58
|
+
- test/fixtures/developer.rb
|
59
|
+
- test/fixtures/developers_projects.yml
|
60
|
+
- test/fixtures/project.rb
|
61
|
+
- test/fixtures/projects.yml
|
62
|
+
- test/fixtures/replies.yml
|
63
|
+
- test/fixtures/reply.rb
|
64
|
+
- test/fixtures/schema.rb
|
65
|
+
- test/fixtures/topic.rb
|
66
|
+
- test/fixtures/topics.yml
|
67
|
+
- test/fixtures/user.rb
|
68
|
+
- test/fixtures/users.yml
|
69
|
+
- test/helper.rb
|
70
|
+
- test/i18n_test.rb
|
71
|
+
- test/lib/activerecord_test_case.rb
|
72
|
+
- test/lib/activerecord_test_connector.rb
|
73
|
+
- test/lib/load_fixtures.rb
|
74
|
+
- test/lib/view_test_process.rb
|
75
|
+
- test/tasks.rake
|
76
|
+
- test/view_test.rb
|
77
|
+
has_rdoc: true
|
78
|
+
homepage: http://github.com/mislav/will_paginate/wikis
|
79
|
+
licenses: []
|
80
|
+
|
81
|
+
post_install_message:
|
82
|
+
rdoc_options:
|
83
|
+
- --charset=UTF-8
|
84
|
+
require_paths:
|
85
|
+
- lib
|
86
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
87
|
+
requirements:
|
88
|
+
- - ">="
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: "0"
|
91
|
+
version:
|
92
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: "0"
|
97
|
+
version:
|
98
|
+
requirements: []
|
99
|
+
|
100
|
+
rubyforge_project:
|
101
|
+
rubygems_version: 1.3.5
|
102
|
+
signing_key:
|
103
|
+
specification_version: 3
|
104
|
+
summary: Most awesome pagination solution for Rails
|
105
|
+
test_files:
|
106
|
+
- test/helper.rb
|
107
|
+
- test/view_test.rb
|
108
|
+
- test/fixtures/admin.rb
|
109
|
+
- test/fixtures/topic.rb
|
110
|
+
- test/fixtures/schema.rb
|
111
|
+
- test/fixtures/reply.rb
|
112
|
+
- test/fixtures/project.rb
|
113
|
+
- test/fixtures/user.rb
|
114
|
+
- test/fixtures/developer.rb
|
115
|
+
- test/lib/view_test_process.rb
|
116
|
+
- test/lib/activerecord_test_case.rb
|
117
|
+
- test/lib/load_fixtures.rb
|
118
|
+
- test/lib/activerecord_test_connector.rb
|
119
|
+
- test/finder_test.rb
|
120
|
+
- test/i18n_test.rb
|
121
|
+
- test/boot.rb
|
122
|
+
- test/collection_test.rb
|