domoscio_rails 0.4.28 → 0.4.30
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 +10 -2
- 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: aa1dab010007c62358dfd0f5845e65a57394f6f5bc3d1ed7dcd3fd852d840268
|
4
|
+
data.tar.gz: 8ee6a7c9b5a4e14ba529c833d31c8268c4a8d74e13328b871eec816c2b1bd0ae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8f5a05a24afb5799ff614ef0662e50590f18dcb8df4e72bf765268d82d974989cab66e09542e3a16d4da60a6674c9d5a820497dab448d6b96b02ee254d70fdde
|
7
|
+
data.tar.gz: 36cddfafb9f5c80c3051bfa5a7e4114d3a1b62d07612ffbceeaf9dbe590ae2a1ebc9cc37028806b316563ae4b5242ca2a1bbb83cf1d6d846f7305b1ed3b6d9fc
|
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
|
@@ -121,8 +123,14 @@ module DomoscioRails
|
|
121
123
|
data = e
|
122
124
|
end
|
123
125
|
|
124
|
-
if response['Total']
|
125
|
-
|
126
|
+
if response['Total'] || response['Total-Pages'] != '1'
|
127
|
+
|
128
|
+
pagetotal = if response['Total']
|
129
|
+
(response['Total'].to_i / response['Per-Page'].to_f).ceil
|
130
|
+
else
|
131
|
+
response['Total-Pages'].to_i
|
132
|
+
end
|
133
|
+
|
126
134
|
(2..pagetotal).each do |j|
|
127
135
|
response = DomoscioRails.send_request(uri, method, params.merge({ page: j }), headers)
|
128
136
|
return response if response.is_a? DomoscioRails::ProcessingError
|
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.30
|
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-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: multi_json
|