darkreaper-will_paginate 2.3.2

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 +42 -0
  3. metadata +140 -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,42 @@
1
+
2
+ quentin:
3
+ id: 1
4
+ login: quentin
5
+ email: quentin@example.com
6
+ salt: 356a192b7913b04c54574d18c28d46e6395428ab # SHA1('0')
7
+ crypted_password: 92f272adb8d8bdb6be884e7bc8aa01b18a17ecf1 # 'monkey'
8
+ created_at: <%= 5.days.ago.to_s :db %>
9
+ remember_token_expires_at: <%= 1.days.from_now.to_s %>
10
+ remember_token: 77de68daecd823babbb58edb1c8e14d7106e83bb
11
+ activation_code:
12
+ activated_at: <%= 5.days.ago.to_s :db %>
13
+ state: active
14
+
15
+ aaron:
16
+ id: 2
17
+ login: aaron
18
+ email: aaron@example.com
19
+ salt: da4b9237bacccdf19c0760cab7aec4a8359010b0 # SHA1('1')
20
+ crypted_password: c78dfc3f51ea336ed90a154cc0ecfb6ce981dc7f # 'monkey'
21
+ created_at: <%= 1.days.ago.to_s :db %>
22
+ remember_token_expires_at:
23
+ remember_token:
24
+ activation_code: 1b6453892473a467d07372d45eb05abc2031647a
25
+ activated_at:
26
+
27
+ state: pending
28
+
29
+
30
+ old_password_holder:
31
+ id: 3
32
+ login: old_password_holder
33
+ email: salty_dog@example.com
34
+ salt: 7e3041ebc2fc05a40c60028e2c4901a81035d3cd
35
+ crypted_password: 00742970dc9e6319f8019fd54864d3ea740f04b1 # test
36
+ created_at: <%= 1.days.ago.to_s :db %>
37
+
38
+ activation_code:
39
+ activated_at: <%= 5.days.ago.to_s :db %>
40
+
41
+
42
+ state: active
metadata ADDED
@@ -0,0 +1,140 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: darkreaper-will_paginate
3
+ version: !ruby/object:Gem::Version
4
+ version: 2.3.2
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-05-16 00:00:00 -07:00
14
+ default_executable:
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
17
+ name: activesupport
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: 1.4.4
24
+ version:
25
+ description: The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates.
26
+ email: mislav.marohnic@gmail.com
27
+ executables: []
28
+
29
+ extensions: []
30
+
31
+ extra_rdoc_files:
32
+ - README.rdoc
33
+ - LICENSE
34
+ - CHANGELOG
35
+ files:
36
+ - CHANGELOG
37
+ - LICENSE
38
+ - README.rdoc
39
+ - Rakefile
40
+ - examples
41
+ - examples/apple-circle.gif
42
+ - examples/index.haml
43
+ - examples/index.html
44
+ - examples/pagination.css
45
+ - examples/pagination.sass
46
+ - init.rb
47
+ - lib
48
+ - lib/will_paginate
49
+ - lib/will_paginate.rb
50
+ - lib/will_paginate/array.rb
51
+ - lib/will_paginate/collection.rb
52
+ - lib/will_paginate/core_ext.rb
53
+ - lib/will_paginate/finder.rb
54
+ - lib/will_paginate/named_scope.rb
55
+ - lib/will_paginate/named_scope_patch.rb
56
+ - lib/will_paginate/version.rb
57
+ - lib/will_paginate/view_helpers.rb
58
+ - test
59
+ - test/boot.rb
60
+ - test/collection_test.rb
61
+ - test/console
62
+ - test/database.yml
63
+ - test/finder_test.rb
64
+ - test/fixtures
65
+ - test/fixtures/admin.rb
66
+ - test/fixtures/developer.rb
67
+ - test/fixtures/developers_projects.yml
68
+ - test/fixtures/project.rb
69
+ - test/fixtures/projects.yml
70
+ - test/fixtures/replies.yml
71
+ - test/fixtures/reply.rb
72
+ - test/fixtures/schema.rb
73
+ - test/fixtures/topic.rb
74
+ - test/fixtures/topics.yml
75
+ - test/fixtures/user.rb
76
+ - test/fixtures/users.yml
77
+ - test/helper.rb
78
+ - test/lib
79
+ - test/lib/activerecord_test_case.rb
80
+ - test/lib/activerecord_test_connector.rb
81
+ - test/lib/load_fixtures.rb
82
+ - test/lib/view_test_process.rb
83
+ - test/tasks.rake
84
+ - test/view_test.rb
85
+ has_rdoc: true
86
+ homepage: http://github.com/mislav/will_paginate/wikis
87
+ post_install_message:
88
+ rdoc_options:
89
+ - --main
90
+ - README.rdoc
91
+ - --inline-source
92
+ - --charset=UTF-8
93
+ require_paths:
94
+ - lib
95
+ required_ruby_version: !ruby/object:Gem::Requirement
96
+ requirements:
97
+ - - ">="
98
+ - !ruby/object:Gem::Version
99
+ version: "0"
100
+ version:
101
+ required_rubygems_version: !ruby/object:Gem::Requirement
102
+ requirements:
103
+ - - ">="
104
+ - !ruby/object:Gem::Version
105
+ version: "0"
106
+ version:
107
+ requirements: []
108
+
109
+ rubyforge_project:
110
+ rubygems_version: 1.2.0
111
+ signing_key:
112
+ specification_version: 2
113
+ summary: Most awesome pagination solution for Rails
114
+ test_files:
115
+ - test/boot.rb
116
+ - test/collection_test.rb
117
+ - test/console
118
+ - test/database.yml
119
+ - test/finder_test.rb
120
+ - test/fixtures
121
+ - test/fixtures/admin.rb
122
+ - test/fixtures/developer.rb
123
+ - test/fixtures/developers_projects.yml
124
+ - test/fixtures/project.rb
125
+ - test/fixtures/projects.yml
126
+ - test/fixtures/replies.yml
127
+ - test/fixtures/reply.rb
128
+ - test/fixtures/schema.rb
129
+ - test/fixtures/topic.rb
130
+ - test/fixtures/topics.yml
131
+ - test/fixtures/user.rb
132
+ - test/fixtures/users.yml
133
+ - test/helper.rb
134
+ - test/lib
135
+ - test/lib/activerecord_test_case.rb
136
+ - test/lib/activerecord_test_connector.rb
137
+ - test/lib/load_fixtures.rb
138
+ - test/lib/view_test_process.rb
139
+ - test/tasks.rake
140
+ - test/view_test.rb