domoscio_rails 0.4.27 → 0.4.29

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: 2dd806e5c6275d67db5d64306ea81bf314ff57a9992455aff57b28e3ca875c2c
4
- data.tar.gz: 17e597d8590812ec0bd90e22b11f10f40cf2477ba8b921ddebc20442259adead
3
+ metadata.gz: d216d522972e9cfaa92864e4f6a3309326d0098bbf0dc5034bb6f3ad06f3359c
4
+ data.tar.gz: 4a727393dc2565d4ece362e20a1c56f2addf1ea65077ffcc8c6303a77dffa4b9
5
5
  SHA512:
6
- metadata.gz: 56b8af5593fedad7575f5c2af7b4b28f05f13e5b823c1a1d3b3afb7ace4bcc715f9fe60925695780745f563edac0308ea388f3764ef5175538c3ec365ec159d7
7
- data.tar.gz: 26ccf8f39761cdf92d6077270430001f8c288dabadb7e68bd18281866074282902acfd5b665d70e01db563284d33b112e871405da6197677200a0d22ccaa4c24
6
+ metadata.gz: 7def1982b13e734ef3d02122549b28d7df0053641a62d250fe120f26c6d1faf1c1dc83df95818d0ba5f3d88a6d0051a6e25e7f4c77095f090d16bb745737c83d
7
+ data.tar.gz: 379d7165d1b52397f23d5416f7cb81ddf5d5dcbcb3344da260d22ff63a4fdb9136a47da6655c5c626b28b758717f0e2052f04fd70b4023bfff0a4ecfb9831d5e
@@ -1,3 +1,3 @@
1
1
  module DomoscioRails
2
- VERSION = '0.4.27'.freeze
2
+ VERSION = '0.4.29'.freeze
3
3
  end
@@ -105,6 +105,8 @@ module DomoscioRails
105
105
 
106
106
  if response['Content-Type'] == 'application/zip' || response['Content-Type'] == 'application/xlsx'
107
107
  data = response
108
+ elsif response.is_a?(Net::HTTPNoContent)
109
+ data = []
108
110
  else
109
111
  data = DomoscioRails::JSON.load(response.body.nil? ? '' : response.body)
110
112
  end
@@ -156,7 +158,7 @@ module DomoscioRails
156
158
  # This helper will check the response status and build the correcponding DomoscioRails::ResponseError
157
159
  #
158
160
  def self.raise_http_failure(uri, response, params)
159
- return if response.is_a? Net::HTTPSuccess
161
+ return if response.is_a?(Net::HTTPSuccess) || response.is_a?(Net::HTTPNoContent)
160
162
 
161
163
  raise ResponseError.new(
162
164
  uri,
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: domoscio_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.27
4
+ version: 0.4.29
5
5
  platform: ruby
6
6
  authors:
7
7
  - Benoit Praly
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-06-18 00:00:00.000000000 Z
11
+ date: 2024-06-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: multi_json