easy_broker 0.1.2 → 0.1.3
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 +5 -2
- data/lib/easy_broker/paginated_response.rb +4 -6
- data/lib/easy_broker/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c20a49902c6e3b0376a60c587184c300ec13fb31e857433332f1d843f13a7a2f
|
4
|
+
data.tar.gz: ebf8a2a4a334fd52e4872e053f7d69d3bfae63c68c82e7ede84bba597ba8e2c1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6de4105cd8d793b7272bc8e6e41de7877e3fc1a96ae4fb63d20f19f58885c027596d3aeaae863f6f93cf9eb53c65475c93b777519540559deae2b4c0b2ec05f6
|
7
|
+
data.tar.gz: 60557d7796a982543fb700f4dd9adacc3f88771957228b9b1b762f80daedccb351b8c643e076ea5cd7aa18c958dcb61d822f9b9b26023b39ece8a4e19d2e3de9
|
data/CHANGELOG.md
CHANGED
@@ -1,7 +1,10 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
3
|
## 0.1.1
|
4
|
-
* Initial release
|
4
|
+
* Initial release.
|
5
5
|
|
6
6
|
## 0.1.2
|
7
|
-
* Added support for contact_requests, mls_properties and locations endpoints
|
7
|
+
* Added support for contact_requests, mls_properties and locations endpoints.
|
8
|
+
|
9
|
+
## 0.1.3
|
10
|
+
* Fixed pagination bug where the last page may not have been included.
|
@@ -17,14 +17,12 @@ class EasyBroker::PaginatedResponse
|
|
17
17
|
end
|
18
18
|
|
19
19
|
def page
|
20
|
-
pagination&.page
|
20
|
+
pagination&.page || 1
|
21
21
|
end
|
22
22
|
|
23
23
|
def next_page
|
24
|
-
|
25
|
-
|
26
|
-
if next_page_number * limit <= total
|
27
|
-
@response = query.get(next_page_number)
|
24
|
+
if page * limit < total
|
25
|
+
@response = query.get(page + 1)
|
28
26
|
end
|
29
27
|
end
|
30
28
|
|
@@ -51,4 +49,4 @@ class EasyBroker::PaginatedResponse
|
|
51
49
|
def pagination
|
52
50
|
response&.pagination
|
53
51
|
end
|
54
|
-
end
|
52
|
+
end
|
data/lib/easy_broker/version.rb
CHANGED