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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a8dddcd0bf81cfaa5abe0f621de95ba0a441afce7b76e25feacc26dcbbe5725c
4
- data.tar.gz: 7490e6b3e949c40d73172cc9895abae79acb6d5147de9f0aa6618c05324e457a
3
+ metadata.gz: f9f76f1d5a78f49a5d8ec73f27e2e80ffd01811740d43aff486d948d2df5b8b4
4
+ data.tar.gz: d00dd0886875b62866da7b66098d10877b4563cf3ed9a1ae64660e0b22f2ba29
5
5
  SHA512:
6
- metadata.gz: 65394c644c5d0230a5e0effab2e52e54ed46eb6f8c12ef651246cc9ed766e5e2bb8ffba49d6d7bf979568ca45f9820c25b19ba9a4894da1e3c062ab756907733
7
- data.tar.gz: 0cbf82badc994a86782dbc06bce71a0fb512749d31b358f49942baed6c677c04685cb7200382a6a94dfe10d1331a998a92f0e8e13a26090aaa96f604f18e7d9b
6
+ metadata.gz: 959314ad0f31cc21b13c9a821104784f8289784ba4e218c79565aca7de6e32b54ffa2433f4e115997e19069019d34f12b0420b11fe411eaf6513ebc2222eaa83
7
+ data.tar.gz: 90f21bd8a0a6330dc2ef52d4486db99c380620a713d653d121e91d5bab055279ca8301883cebf069f7aea0676fa2bff53202a798cae0f982feec50ca6b79be3a
@@ -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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module NinjaVanApi
4
- VERSION = "0.3.9"
4
+ VERSION = "0.3.10"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ninja_van_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.9
4
+ version: 0.3.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jane Trang Mai Nguyen