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 +4 -4
- data/lib/domoscio_rails/version.rb +1 -1
- data/lib/domoscio_rails.rb +3 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d216d522972e9cfaa92864e4f6a3309326d0098bbf0dc5034bb6f3ad06f3359c
|
4
|
+
data.tar.gz: 4a727393dc2565d4ece362e20a1c56f2addf1ea65077ffcc8c6303a77dffa4b9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7def1982b13e734ef3d02122549b28d7df0053641a62d250fe120f26c6d1faf1c1dc83df95818d0ba5f3d88a6d0051a6e25e7f4c77095f090d16bb745737c83d
|
7
|
+
data.tar.gz: 379d7165d1b52397f23d5416f7cb81ddf5d5dcbcb3344da260d22ff63a4fdb9136a47da6655c5c626b28b758717f0e2052f04fd70b4023bfff0a4ecfb9831d5e
|
data/lib/domoscio_rails.rb
CHANGED
@@ -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::
|
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.
|
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-
|
11
|
+
date: 2024-06-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: multi_json
|