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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7e2c6d6b5f13359963960225c97ceb6088fd2121d2682afa7980239904ffb6c7
4
- data.tar.gz: 03dd4f8edc6125ee282f2ff8908e12b5a2e90495dab89790a088003580795258
3
+ metadata.gz: c20a49902c6e3b0376a60c587184c300ec13fb31e857433332f1d843f13a7a2f
4
+ data.tar.gz: ebf8a2a4a334fd52e4872e053f7d69d3bfae63c68c82e7ede84bba597ba8e2c1
5
5
  SHA512:
6
- metadata.gz: e879f87bf528593c737ce3de70217613b46940330b07171837195ce45bcf4df8d14bdbc50e252d9be6fed98a0805e434e310a68ab44dacd02d959aff0be7a7f8
7
- data.tar.gz: b9d77c6f693b8acf5cf76449764d16f5cf016f9ac6cd554bd221b9251cd601fb5bb4d90e99fd39ee488ebdbacebf4506f13843c5f8e9a467d10f86a1a33fe47b
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
- next_page_number = page.nil? ? 1 : page + 1
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
@@ -1,3 +1,3 @@
1
1
  module EasyBroker
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: easy_broker
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Northam