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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 444accbac3d55cc4911441991f917eb880910a8e
4
- data.tar.gz: f03ff150b2cf27a6957f6aefce1dd9e5f57cf372
3
+ metadata.gz: f78880d8c3c58cd3fd65e91547faa920d7aef720
4
+ data.tar.gz: 23452f1dd9da84958866eb86c15af8becb09c781
5
5
  SHA512:
6
- metadata.gz: 7ccd2018c75d9ac4f45f7b546b7a2713b364f6f8f4486245547904b17a070c8319a0651ffe539730bb08e0506ff0b3ecb96640780072c73baf017c6b819a8115
7
- data.tar.gz: 606d9b6cc2f19561c1676870671e9e5b45dd9b675749207d3791c7b2b2795a9b47e14bd4a5779ca19089fbfd8d79ec023a14f0e4f01f62b24767b539af7cbc35
6
+ metadata.gz: 5f831b7fd8470561d498695e10addbe1849672df93dda087c279ae3b90c61dcea4e2beb78f2eb5e540c14d7e42efa789ed2f3d9c6c3bfc12bdc7ba35c47beb5b
7
+ data.tar.gz: fe88a05aa6265ddd59198ce75635a38d8143fe0785aece4e556c3716deb15962a30f17a23b2f73ff9f0de8162c04ecc9ef42dde4afed3c624622e1713910cca6
data/README.md CHANGED
@@ -74,3 +74,6 @@ or
74
74
  # app/views/news/index.js.erb
75
75
  <%= infinite_append ".list-news ul", { partial: "news/news", collection: @news } %>
76
76
  ```
77
+
78
+ ## Example
79
+ Example using will_paginate_infinite with Rails 4: https://github.com/Godoy/will_paginate_infinite_example
@@ -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.0.1'
7
- s.date = '2016-07-15'
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
- 'http://rubygems.org/gems/will_paginate_infinite'
19
- s.license = 'MIT'
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.0.1
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-15 00:00:00.000000000 Z
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: '0'
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: '0'
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: http://rubygems.org/gems/will_paginate_infinite
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