paginator 1.0.4 → 1.0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/History.txt +8 -0
  2. data/Rakefile +2 -0
  3. data/lib/paginator.rb +1 -1
  4. metadata +3 -3
data/History.txt CHANGED
@@ -1,3 +1,11 @@
1
+ == 1.0.5 / 2006-10-27
2
+
3
+ * Fix to Rakefile (addresses #6304)
4
+
5
+ == 1.0.4 / 2006-10-27
6
+
7
+ * Documentation fix
8
+
1
9
  == 1.0.3 / 2006-10-26
2
10
 
3
11
  * Documentation fix
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
@@ -2,7 +2,7 @@ require 'forwardable'
2
2
 
3
3
  class Paginator
4
4
 
5
- VERSION = '1.0.4'
5
+ VERSION = '1.0.5'
6
6
 
7
7
  class ArgumentError < ::ArgumentError; end
8
8
  class MissingCountError < ArgumentError; end
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.4
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: ryand-ruby@zenspider.com
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
- - Ryan Davis
30
+ - Bruce Williams
31
31
  files:
32
32
  - History.txt
33
33
  - Manifest.txt