will_paginate_infinite 0.0.1 → 0.1.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.
- checksums.yaml +4 -4
- data/README.md +3 -0
- data/will_paginate_infinite.gemspec +6 -6
- metadata +15 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f78880d8c3c58cd3fd65e91547faa920d7aef720
|
4
|
+
data.tar.gz: 23452f1dd9da84958866eb86c15af8becb09c781
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5f831b7fd8470561d498695e10addbe1849672df93dda087c279ae3b90c61dcea4e2beb78f2eb5e540c14d7e42efa789ed2f3d9c6c3bfc12bdc7ba35c47beb5b
|
7
|
+
data.tar.gz: fe88a05aa6265ddd59198ce75635a38d8143fe0785aece4e556c3716deb15962a30f17a23b2f73ff9f0de8162c04ecc9ef42dde4afed3c624622e1713910cca6
|
data/README.md
CHANGED
@@ -3,8 +3,8 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
3
3
|
require 'version'
|
4
4
|
Gem::Specification.new do |s|
|
5
5
|
s.name = 'will_paginate_infinite'
|
6
|
-
s.version = '0.
|
7
|
-
s.date = '2016-07-
|
6
|
+
s.version = '0.1.2'
|
7
|
+
s.date = '2016-07-29'
|
8
8
|
s.summary = "Will Paginate with infinite scroll"
|
9
9
|
s.description = "Will Paginate with infinite scroll"
|
10
10
|
s.authors = ["Adriano Godoy"]
|
@@ -14,9 +14,9 @@ Gem::Specification.new do |s|
|
|
14
14
|
s.require_paths = ["lib"]
|
15
15
|
|
16
16
|
|
17
|
-
s.homepage =
|
18
|
-
|
19
|
-
s.
|
17
|
+
s.homepage = 'https://github.com/PlanBCom/will_paginate_infinite'
|
18
|
+
s.license = 'MIT'
|
19
|
+
s.rdoc_options = ['--main', 'README.md', '--charset=UTF-8']
|
20
20
|
|
21
|
-
s.add_runtime_dependency "will_paginate"
|
21
|
+
s.add_runtime_dependency "will_paginate", '~> 3.0', '>= 3.0.3'
|
22
22
|
end
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: will_paginate_infinite
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Adriano Godoy
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-07-
|
11
|
+
date: 2016-07-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: will_paginate
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '3.0'
|
17
20
|
- - ">="
|
18
21
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
22
|
+
version: 3.0.3
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
27
|
+
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '3.0'
|
24
30
|
- - ">="
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: 3.0.3
|
27
33
|
description: Will Paginate with infinite scroll
|
28
34
|
email: godoy.ccp@gmail.com
|
29
35
|
executables: []
|
@@ -38,12 +44,15 @@ files:
|
|
38
44
|
- lib/will_paginate_infinite.rb
|
39
45
|
- lib/will_paginate_infinite/infinite_renderer.rb
|
40
46
|
- will_paginate_infinite.gemspec
|
41
|
-
homepage:
|
47
|
+
homepage: https://github.com/PlanBCom/will_paginate_infinite
|
42
48
|
licenses:
|
43
49
|
- MIT
|
44
50
|
metadata: {}
|
45
51
|
post_install_message:
|
46
|
-
rdoc_options:
|
52
|
+
rdoc_options:
|
53
|
+
- "--main"
|
54
|
+
- README.md
|
55
|
+
- "--charset=UTF-8"
|
47
56
|
require_paths:
|
48
57
|
- lib
|
49
58
|
required_ruby_version: !ruby/object:Gem::Requirement
|