paginator 1.0.4 → 1.0.5
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.
- data/History.txt +8 -0
- data/Rakefile +2 -0
- data/lib/paginator.rb +1 -1
- metadata +3 -3
data/History.txt
CHANGED
data/Rakefile
CHANGED
|
@@ -14,6 +14,8 @@ set of objects based on the offset and number of objects per page.
|
|
|
14
14
|
EOD
|
|
15
15
|
p.url = "http://paginator.rubyforge.org"
|
|
16
16
|
p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
|
|
17
|
+
p.email = %q{bruce@codefluency.com}
|
|
18
|
+
p.author = ["Bruce Williams"]
|
|
17
19
|
end
|
|
18
20
|
|
|
19
21
|
# vim: syntax=Ruby
|
data/lib/paginator.rb
CHANGED
metadata
CHANGED
|
@@ -3,13 +3,13 @@ rubygems_version: 0.8.11
|
|
|
3
3
|
specification_version: 1
|
|
4
4
|
name: paginator
|
|
5
5
|
version: !ruby/object:Gem::Version
|
|
6
|
-
version: 1.0.
|
|
6
|
+
version: 1.0.5
|
|
7
7
|
date: 2006-10-27 00:00:00 -06:00
|
|
8
8
|
summary: A generic paginator object for use in any Ruby program
|
|
9
9
|
require_paths:
|
|
10
10
|
- lib
|
|
11
11
|
- test
|
|
12
|
-
email:
|
|
12
|
+
email: bruce@codefluency.com
|
|
13
13
|
homepage: http://paginator.rubyforge.org
|
|
14
14
|
rubyforge_project: paginator
|
|
15
15
|
description: Paginator doesn't make any assumptions as to how data is retrieved; you just have to provide it with the total number of objects and a way to pull a specific set of objects based on the offset and number of objects per page.
|
|
@@ -27,7 +27,7 @@ platform: ruby
|
|
|
27
27
|
signing_key:
|
|
28
28
|
cert_chain:
|
|
29
29
|
authors:
|
|
30
|
-
-
|
|
30
|
+
- Bruce Williams
|
|
31
31
|
files:
|
|
32
32
|
- History.txt
|
|
33
33
|
- Manifest.txt
|