boxr 1.23.0 → 1.23.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 +4 -4
- data/lib/boxr/client.rb +2 -2
- data/lib/boxr/version.rb +1 -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: 61830d438f70d8585c435bf00b719911cba3a4687ce9df4310f7232d50b4bd5b
|
4
|
+
data.tar.gz: 677ffb4ccd6ea0ef5478e1dd879e202c2c8605e12561a72c865b05689295a4a1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cf1a95e4d924c7e7c64bfda48f7c33524cb3c4a6a1de8d443044c92b56dd80a6747cfe2229e9cfd5d60ff68f147538d47aa06682cec6e059ef20e69f8ed342e9
|
7
|
+
data.tar.gz: bbbdcbdeab436de980d16a6d9e3dd4def18068421094b75787991fee3f79bd6b530d7df2e5255171340d838ae2c6df8b7c54e525be5b73b7435c1558987048d1
|
data/lib/boxr/client.rb
CHANGED
@@ -138,7 +138,7 @@ module Boxr
|
|
138
138
|
raise BoxrError.new(status: res.status, body: res.body, header: res.header)
|
139
139
|
end
|
140
140
|
|
141
|
-
body_json = JSON.
|
141
|
+
body_json = JSON.load(res.body) # rubocop:disable Security/JSONLoad
|
142
142
|
total_count = body_json['total_count']
|
143
143
|
offset += limit
|
144
144
|
|
@@ -265,7 +265,7 @@ module Boxr
|
|
265
265
|
end
|
266
266
|
|
267
267
|
def processed_response(res)
|
268
|
-
body_json = JSON.
|
268
|
+
body_json = JSON.load(res.body) # rubocop:disable Security/JSONLoad
|
269
269
|
[BoxrMash.new(body_json), res]
|
270
270
|
end
|
271
271
|
|
data/lib/boxr/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: boxr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.23.
|
4
|
+
version: 1.23.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chad Burnette
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2025-09-
|
12
|
+
date: 2025-09-25 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: awesome_print
|