appengine-paginator 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
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.1
|
@@ -0,0 +1,73 @@
|
|
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{appengine-paginator}
|
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 = ["Josh Moore"]
|
12
|
+
s.date = %q{2010-10-09}
|
13
|
+
s.description = %q{Pagination on JRuby running on the Google AppEngine}
|
14
|
+
s.email = %q{josh@codingforrent.com}
|
15
|
+
s.executables = ["autospec", "rackup", "spec"]
|
16
|
+
s.extra_rdoc_files = [
|
17
|
+
"LICENSE",
|
18
|
+
"README.rdoc"
|
19
|
+
]
|
20
|
+
s.files = [
|
21
|
+
".document",
|
22
|
+
".gitignore",
|
23
|
+
"Gemfile",
|
24
|
+
"LICENSE",
|
25
|
+
"README.rdoc",
|
26
|
+
"Rakefile",
|
27
|
+
"VERSION",
|
28
|
+
"WEB-INF/app.yaml",
|
29
|
+
"appengine-paginator.gemspec",
|
30
|
+
"bin/autospec",
|
31
|
+
"bin/rackup",
|
32
|
+
"bin/spec",
|
33
|
+
"config.ru",
|
34
|
+
"lib/appengine-paginator.rb",
|
35
|
+
"lib/appengine-paginator/cursor.rb",
|
36
|
+
"lib/appengine-paginator/paginate.rb",
|
37
|
+
"public/favicon.ico",
|
38
|
+
"public/robots.txt",
|
39
|
+
"spec/appengine-paginator_spec.rb",
|
40
|
+
"spec/cursor_spec.rb",
|
41
|
+
"spec/paginate_spec.rb",
|
42
|
+
"spec/spec.opts",
|
43
|
+
"spec/spec_helper.rb",
|
44
|
+
"spec/support/post.rb",
|
45
|
+
"spec_runner"
|
46
|
+
]
|
47
|
+
s.homepage = %q{http://github.com/joshsmoore@gmail.com/appengine-paginator}
|
48
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
49
|
+
s.require_paths = ["lib"]
|
50
|
+
s.rubygems_version = %q{1.3.7}
|
51
|
+
s.summary = %q{A gem to assist in pagination for the Google AppEngine}
|
52
|
+
s.test_files = [
|
53
|
+
"spec/appengine-paginator_spec.rb",
|
54
|
+
"spec/cursor_spec.rb",
|
55
|
+
"spec/paginate_spec.rb",
|
56
|
+
"spec/spec_helper.rb",
|
57
|
+
"spec/support/post.rb"
|
58
|
+
]
|
59
|
+
|
60
|
+
if s.respond_to? :specification_version then
|
61
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
62
|
+
s.specification_version = 3
|
63
|
+
|
64
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
65
|
+
s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
|
66
|
+
else
|
67
|
+
s.add_dependency(%q<rspec>, [">= 1.2.9"])
|
68
|
+
end
|
69
|
+
else
|
70
|
+
s.add_dependency(%q<rspec>, [">= 1.2.9"])
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
File without changes
|
File without changes
|
data/lib/appengine-paginator.rb
CHANGED
@@ -1,3 +1,3 @@
|
|
1
|
-
require 'paginate'
|
2
|
-
require 'cursor'
|
1
|
+
require 'appengine-paginator/paginate'
|
2
|
+
require 'appengine-paginator/cursor'
|
3
3
|
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: appengine-paginator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 25
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
9
|
+
- 1
|
10
|
+
version: 0.1.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Josh Moore
|
@@ -54,13 +54,14 @@ files:
|
|
54
54
|
- Rakefile
|
55
55
|
- VERSION
|
56
56
|
- WEB-INF/app.yaml
|
57
|
+
- appengine-paginator.gemspec
|
57
58
|
- bin/autospec
|
58
59
|
- bin/rackup
|
59
60
|
- bin/spec
|
60
61
|
- config.ru
|
61
62
|
- lib/appengine-paginator.rb
|
62
|
-
- lib/cursor.rb
|
63
|
-
- lib/paginate.rb
|
63
|
+
- lib/appengine-paginator/cursor.rb
|
64
|
+
- lib/appengine-paginator/paginate.rb
|
64
65
|
- public/favicon.ico
|
65
66
|
- public/robots.txt
|
66
67
|
- spec/appengine-paginator_spec.rb
|