ninja_van_api 0.3.9 → 0.3.10
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/ninja_van_api/client.rb +3 -0
- data/lib/ninja_van_api/objects/base.rb +21 -0
- data/lib/ninja_van_api/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f9f76f1d5a78f49a5d8ec73f27e2e80ffd01811740d43aff486d948d2df5b8b4
|
4
|
+
data.tar.gz: d00dd0886875b62866da7b66098d10877b4563cf3ed9a1ae64660e0b22f2ba29
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 959314ad0f31cc21b13c9a821104784f8289784ba4e218c79565aca7de6e32b54ffa2433f4e115997e19069019d34f12b0420b11fe411eaf6513ebc2222eaa83
|
7
|
+
data.tar.gz: 90f21bd8a0a6330dc2ef52d4486db99c380620a713d653d121e91d5bab055279ca8301883cebf069f7aea0676fa2bff53202a798cae0f982feec50ca6b79be3a
|
data/lib/ninja_van_api/client.rb
CHANGED
@@ -62,6 +62,9 @@ module NinjaVanApi
|
|
62
62
|
if Rails.env.development?
|
63
63
|
Rails.logger.debug "Access token might be expired. You can refetch the token by calling NinjaVanApi::Client#refresh_access_token. Make sure update the ENV variable NINJAVAN_API_ACCESS_TOKEN"
|
64
64
|
return ENV.fetch("NINJAVAN_API_ACCESS_TOKEN")
|
65
|
+
elsif Rails.env.test?
|
66
|
+
Rails.logger.debug "Please use webmock to stub the access token"
|
67
|
+
return "test_token"
|
65
68
|
end
|
66
69
|
|
67
70
|
fetch_access_token if token_expired?
|
@@ -19,5 +19,26 @@ module NinjaVanApi
|
|
19
19
|
obj
|
20
20
|
end
|
21
21
|
end
|
22
|
+
|
23
|
+
# Convert back to hash without table key, including nested structures
|
24
|
+
def to_hash
|
25
|
+
ostruct_to_hash(self)
|
26
|
+
end
|
27
|
+
|
28
|
+
private
|
29
|
+
|
30
|
+
def ostruct_to_hash(object)
|
31
|
+
case object
|
32
|
+
when OpenStruct
|
33
|
+
hash = object.to_h.reject { |k, _| k == :table }
|
34
|
+
hash.transform_values { |value| ostruct_to_hash(value) }
|
35
|
+
when Array
|
36
|
+
object.map { |item| ostruct_to_hash(item) }
|
37
|
+
when Hash
|
38
|
+
object.transform_values { |value| ostruct_to_hash(value) }
|
39
|
+
else
|
40
|
+
object
|
41
|
+
end
|
42
|
+
end
|
22
43
|
end
|
23
44
|
end
|