wor-paginate 0.1.3 → 0.1.4
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/CHANGELOG.md +4 -1
- data/README.md +2 -2
- data/lib/wor/paginate/version.rb +1 -1
- data/wor-paginate.gemspec +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0ece2d8e06ba836333189b0db686523324723403a7b78e094d4d6d609247f501
|
|
4
|
+
data.tar.gz: c649acf92be56898747bc758bfb6479ecb82894305fb13f16c28259c0e8b96ac
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 491c2345cc0add8083d0ef428d70194a180c12c3d4b3298da3c4fcb9cd662477b8bc8e2dc5285e4019bb6b1f7d71608d17ab942cc72f64d1910874741864522a
|
|
7
|
+
data.tar.gz: 9a6bbee3a30cdee550cb309890fb822c325d77411251fa32aa41b6b9b0962cbf381a83b88d33f91b9f910c6bad5e9b8e3aefe767028a69191ffe16b546b60cb1
|
data/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
## Change log
|
|
2
2
|
|
|
3
|
+
### V0.1.4
|
|
4
|
+
* [#57](https://github.com/Wolox/wor-paginate/pull/57): Update rails max version - [@hdf1986](https://github.com/hdf1986).
|
|
5
|
+
|
|
3
6
|
### V0.1.2
|
|
4
|
-
* [#56](https://github.com/Wolox/wor-paginate/pull/56): Added automatic each serializer - [@hdf1986](https://github.com/hdf1986).
|
|
7
|
+
* [#56](https://github.com/Wolox/wor-paginate/pull/56): Added automatic each serializer - [@hdf1986](https://github.com/hdf1986).
|
data/README.md
CHANGED
|
@@ -117,12 +117,12 @@ If either Kaminari or will_paginate are required in the project, Wor::Paginate w
|
|
|
117
117
|
You can use the `be_paginated` matcher to test your endpoints. It also accepts the `with` chain method to receive a formatter.
|
|
118
118
|
|
|
119
119
|
You only need to add this in your rails_helper.rb
|
|
120
|
-
```
|
|
120
|
+
```ruby
|
|
121
121
|
# spec/rails_helper.rb
|
|
122
122
|
require 'wor/paginate/rspec'
|
|
123
123
|
```
|
|
124
124
|
And in your spec do
|
|
125
|
-
```
|
|
125
|
+
```ruby
|
|
126
126
|
# spec/controllers/your_controller.rb
|
|
127
127
|
describe YourController do
|
|
128
128
|
describe '#index' do
|
data/lib/wor/paginate/version.rb
CHANGED
data/wor-paginate.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: wor-paginate
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- hdf1986
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2018-
|
|
13
|
+
date: 2018-09-04 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: railties
|
|
@@ -19,9 +19,9 @@ dependencies:
|
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
21
|
version: 4.1.0
|
|
22
|
-
- - "
|
|
22
|
+
- - "<"
|
|
23
23
|
- !ruby/object:Gem::Version
|
|
24
|
-
version: '5.
|
|
24
|
+
version: '5.3'
|
|
25
25
|
type: :runtime
|
|
26
26
|
prerelease: false
|
|
27
27
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -29,9 +29,9 @@ dependencies:
|
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
31
|
version: 4.1.0
|
|
32
|
-
- - "
|
|
32
|
+
- - "<"
|
|
33
33
|
- !ruby/object:Gem::Version
|
|
34
|
-
version: '5.
|
|
34
|
+
version: '5.3'
|
|
35
35
|
- !ruby/object:Gem::Dependency
|
|
36
36
|
name: rails
|
|
37
37
|
requirement: !ruby/object:Gem::Requirement
|