odata 0.6.11 → 0.6.12

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: a572559e7706b0bef39c622c2e4b3a4b4e5a7b21
4
- data.tar.gz: cf9f5a4a0afce81ef6c0eb9cf2f7df1ec47d2cd2
3
+ metadata.gz: b2b1cbedefd8c14ecae1b82a025be819ecd665cc
4
+ data.tar.gz: 084b1252cb352ab62d9a29bed15f95024dde2bb8
5
5
  SHA512:
6
- metadata.gz: 5afefdbeb87aa038ce5d4bfea737712d8afbcb87ddc4e6a240eda5213d5d2969491b953a86e1827b84bc885739a4d4ba871451971e7fe1892f5f391901337fe9
7
- data.tar.gz: 614b2f640935183abb86acc1823c808605e067fc6e217413079a5e0e0256a777338904edea14ab9e24c628c0cf3b8377ae35be698c5645871eafb3f96dc2b176
6
+ metadata.gz: 22565266600b828544e8822776716acd28bd7b5c94b63ec2a0a1001228302df477b173d83cbbd2d6e86cabe5979b1bd7dba06fcddb7c5c0d82d08cc370cd29ee
7
+ data.tar.gz: 04924842bffb503814cabc780333c7a7e21fb1b2f81c32612114b824d703c651f3b029d50811a82236c7480a4e27482e143460c7417392de27280f6cc8f15eb3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 0.6.12
4
+
5
+ * Minor bug fix in OData::Query::Result#each implementation.
6
+
3
7
  ## 0.6.11
4
8
 
5
9
  * Added logic to allow OData::Query::Result#each to handle paginated results.
@@ -46,7 +46,7 @@ module OData
46
46
  end
47
47
 
48
48
  def next_page_url
49
- next_page.attributes['href'].gsub(service.service_url, '')
49
+ next_page.attributes['href'].value.gsub(service.service_url, '')
50
50
  end
51
51
  end
52
52
  end
data/lib/odata/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module OData
2
- VERSION = '0.6.11'
2
+ VERSION = '0.6.12'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: odata
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.11
4
+ version: 0.6.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Thompson