pagination 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/lib/pagination.rb +1 -0
- data/pagination.gemspec +68 -0
- metadata +3 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.1
|
data/lib/pagination.rb
CHANGED
data/pagination.gemspec
ADDED
@@ -0,0 +1,68 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{pagination}
|
8
|
+
s.version = "0.1.1"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Cyril David"]
|
12
|
+
s.date = %q{2010-04-25}
|
13
|
+
s.default_executable = %q{pagination}
|
14
|
+
s.description = %q{Trying to make the pagination world a better place}
|
15
|
+
s.email = %q{cyx.ucron@gmail.com}
|
16
|
+
s.executables = ["pagination"]
|
17
|
+
s.extra_rdoc_files = [
|
18
|
+
"LICENSE",
|
19
|
+
"README.md"
|
20
|
+
]
|
21
|
+
s.files = [
|
22
|
+
".document",
|
23
|
+
".gitignore",
|
24
|
+
"LICENSE",
|
25
|
+
"README.md",
|
26
|
+
"Rakefile",
|
27
|
+
"VERSION",
|
28
|
+
"bin/pagination",
|
29
|
+
"lib/pagination.rb",
|
30
|
+
"lib/pagination/adapters/ohm.rb",
|
31
|
+
"lib/pagination/collection.rb",
|
32
|
+
"lib/pagination/helpers.rb",
|
33
|
+
"lib/pagination/template.rb",
|
34
|
+
"pagination.gemspec",
|
35
|
+
"test/helper.rb",
|
36
|
+
"test/test_pagination.rb",
|
37
|
+
"test/test_pagination_template.rb",
|
38
|
+
"views/paginate.erb",
|
39
|
+
"views/paginate.haml"
|
40
|
+
]
|
41
|
+
s.homepage = %q{http://github.com/sinefunc/pagination}
|
42
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
43
|
+
s.require_paths = ["lib"]
|
44
|
+
s.rubygems_version = %q{1.3.6}
|
45
|
+
s.summary = %q{A simplistic pagination library}
|
46
|
+
s.test_files = [
|
47
|
+
"test/helper.rb",
|
48
|
+
"test/test_pagination.rb",
|
49
|
+
"test/test_pagination_template.rb"
|
50
|
+
]
|
51
|
+
|
52
|
+
if s.respond_to? :specification_version then
|
53
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
54
|
+
s.specification_version = 3
|
55
|
+
|
56
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
57
|
+
s.add_development_dependency(%q<contest>, [">= 0"])
|
58
|
+
s.add_development_dependency(%q<haml>, [">= 0"])
|
59
|
+
else
|
60
|
+
s.add_dependency(%q<contest>, [">= 0"])
|
61
|
+
s.add_dependency(%q<haml>, [">= 0"])
|
62
|
+
end
|
63
|
+
else
|
64
|
+
s.add_dependency(%q<contest>, [">= 0"])
|
65
|
+
s.add_dependency(%q<haml>, [">= 0"])
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 1
|
8
|
-
-
|
9
|
-
version: 0.1.
|
8
|
+
- 1
|
9
|
+
version: 0.1.1
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Cyril David
|
@@ -63,6 +63,7 @@ files:
|
|
63
63
|
- lib/pagination/collection.rb
|
64
64
|
- lib/pagination/helpers.rb
|
65
65
|
- lib/pagination/template.rb
|
66
|
+
- pagination.gemspec
|
66
67
|
- test/helper.rb
|
67
68
|
- test/test_pagination.rb
|
68
69
|
- test/test_pagination_template.rb
|