zooming-proxy 0.4.0 → 0.4.1

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: 2019838582e56560013197cd409cc4f3bd0ada67
4
- data.tar.gz: 3972471cc45d40b126022d4d1c0ede123a1c60f5
3
+ metadata.gz: faee7cb1cc1a19635d8925d6ae015df254917a44
4
+ data.tar.gz: 022a96de63bc542d3aebd777d6991ce0eefb0e02
5
5
  SHA512:
6
- metadata.gz: 2195bbceaabf5aa7499f3c76e31665e3119df03cb2cdcb0b095aa7b235cc32df2de6f5864605fd01ba54ef8fa3a40dad2fe31df169813d16def27befd087a421
7
- data.tar.gz: e2cf8d6beeb5f8a5827b6668bb4f0290f00ebc912da86adc278c1b84feadcec0bb5bbd725ec19a25f1d0661264ad73b1130ebfe026cc1848722708c7cd9a9882
6
+ metadata.gz: 3958b2764763d987e050f3821b2c322d387aa7ebb8057b3fb55740a6d5f23879f7e326f03780185665d1bc6b57b078211f7562bc4ab9a4f492b6b46a132146c4
7
+ data.tar.gz: 8ed7682569e9a5a76556b2fe6606bea06e261b8471a15d59f6b669223f7d6559299161f6b234fab64638d7c33828355e0b56168abaa3ee3e8abe66d21f802b64
@@ -136,7 +136,7 @@ class ZoomingProxy
136
136
  def zoomable?(headers, body, depth)
137
137
  zoomable = depth <= MAX_DEPTH
138
138
  zoomable &= headers.include?('x-hal-zoom')
139
- zoomable &= headers['content-type'].include?('json')
139
+ zoomable &= headers['content-type'].to_s.include?('json')
140
140
 
141
141
  zoomable && !body.nil?
142
142
  end
@@ -144,7 +144,7 @@ class ZoomingProxy
144
144
  def requested_links(body, headers)
145
145
  body['_links']
146
146
  .to_h
147
- .select { |k, _| headers['x-hal-zoom'].split(/\s+/).include?(k) }
147
+ .select { |k, _| headers['x-hal-zoom'].to_s.split(/\s+/).include?(k) }
148
148
  .each_with_object({}) do |(k, v), urls|
149
149
  array = v.respond_to?(:to_ary)
150
150
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class ZoomingProxy
4
- VERSION = '0.4.0'
4
+ VERSION = '0.4.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zooming-proxy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Blendle developers