xzif-will_paginate 2.3.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. data/Rakefile +10 -0
  2. data/test/fixtures/users.yml +19 -0
  3. metadata +132 -0
@@ -0,0 +1,10 @@
1
+ # Add your own tasks in files placed in lib/tasks ending in .rake,
2
+ # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3
+
4
+ require(File.join(File.dirname(__FILE__), 'config', 'boot'))
5
+
6
+ require 'rake'
7
+ require 'rake/testtask'
8
+ require 'rake/rdoctask'
9
+
10
+ require 'tasks/rails'
@@ -0,0 +1,19 @@
1
+ quentin:
2
+ id: 1
3
+ login: quentin
4
+ email: quentin@example.com
5
+ salt: 7e3041ebc2fc05a40c60028e2c4901a81035d3cd
6
+ crypted_password: 00742970dc9e6319f8019fd54864d3ea740f04b1 # test
7
+ created_at: <%= 5.days.ago.to_s :db %>
8
+ activation_code: 8f24789ae988411ccf33ab0c30fe9106fab32e9b
9
+ activated_at: <%= 5.days.ago.to_s :db %>
10
+
11
+ aaron:
12
+ id: 2
13
+ login: aaron
14
+ email: aaron@example.com
15
+ salt: 7e3041ebc2fc05a40c60028e2c4901a81035d3cd
16
+ crypted_password: 00742970dc9e6319f8019fd54864d3ea740f04b1 # test
17
+ created_at: <%= 1.days.ago.to_s :db %>
18
+ activation_code: 8f24789ae988411ccf33ab0c30fe9106fab32e9a
19
+
metadata ADDED
@@ -0,0 +1,132 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: xzif-will_paginate
3
+ version: !ruby/object:Gem::Version
4
+ version: 2.3.6
5
+ platform: ruby
6
+ authors:
7
+ - "Mislav Marohni\xC4\x87"
8
+ - PJ Hyett
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2008-10-26 00:00:00 -07: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
+ - README.rdoc
25
+ - LICENSE
26
+ - CHANGELOG.rdoc
27
+ files:
28
+ - CHANGELOG.rdoc
29
+ - LICENSE
30
+ - README.rdoc
31
+ - Rakefile
32
+ - examples
33
+ - examples/apple-circle.gif
34
+ - examples/index.haml
35
+ - examples/index.html
36
+ - examples/pagination.css
37
+ - examples/pagination.sass
38
+ - init.rb
39
+ - lib
40
+ - lib/will_paginate
41
+ - lib/will_paginate.rb
42
+ - lib/will_paginate/array.rb
43
+ - lib/will_paginate/collection.rb
44
+ - lib/will_paginate/core_ext.rb
45
+ - lib/will_paginate/finder.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
+ - test
51
+ - test/boot.rb
52
+ - test/collection_test.rb
53
+ - test/console
54
+ - test/database.yml
55
+ - test/finder_test.rb
56
+ - test/fixtures
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/lib
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
+ post_install_message:
80
+ rdoc_options:
81
+ - --main
82
+ - README.rdoc
83
+ - --inline-source
84
+ - --charset=UTF-8
85
+ require_paths:
86
+ - lib
87
+ required_ruby_version: !ruby/object:Gem::Requirement
88
+ requirements:
89
+ - - ">="
90
+ - !ruby/object:Gem::Version
91
+ version: "0"
92
+ version:
93
+ required_rubygems_version: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - ">="
96
+ - !ruby/object:Gem::Version
97
+ version: "0"
98
+ version:
99
+ requirements: []
100
+
101
+ rubyforge_project:
102
+ rubygems_version: 1.2.0
103
+ signing_key:
104
+ specification_version: 2
105
+ summary: Most awesome pagination solution for Rails
106
+ test_files:
107
+ - test/boot.rb
108
+ - test/collection_test.rb
109
+ - test/console
110
+ - test/database.yml
111
+ - test/finder_test.rb
112
+ - test/fixtures
113
+ - test/fixtures/admin.rb
114
+ - test/fixtures/developer.rb
115
+ - test/fixtures/developers_projects.yml
116
+ - test/fixtures/project.rb
117
+ - test/fixtures/projects.yml
118
+ - test/fixtures/replies.yml
119
+ - test/fixtures/reply.rb
120
+ - test/fixtures/schema.rb
121
+ - test/fixtures/topic.rb
122
+ - test/fixtures/topics.yml
123
+ - test/fixtures/user.rb
124
+ - test/fixtures/users.yml
125
+ - test/helper.rb
126
+ - test/lib
127
+ - test/lib/activerecord_test_case.rb
128
+ - test/lib/activerecord_test_connector.rb
129
+ - test/lib/load_fixtures.rb
130
+ - test/lib/view_test_process.rb
131
+ - test/tasks.rake
132
+ - test/view_test.rb