netsuite 0.6.5 → 0.6.6
Sign up to get free protection for your applications and to get access to all the features.
@@ -58,7 +58,7 @@ module NetSuite
|
|
58
58
|
end
|
59
59
|
|
60
60
|
def response_list
|
61
|
-
@response_list ||= @response.to_hash[:delete_list_response][:write_response_list][:write_response]
|
61
|
+
@response_list ||= array_wrap(@response.to_hash[:delete_list_response][:write_response_list][:write_response])
|
62
62
|
end
|
63
63
|
|
64
64
|
def success?
|
@@ -38,11 +38,11 @@ module NetSuite
|
|
38
38
|
end
|
39
39
|
|
40
40
|
def response_body
|
41
|
-
@response_body ||= response_hash[:record_list][:record]
|
41
|
+
@response_body ||= array_wrap(response_hash[:record_list][:record])
|
42
42
|
end
|
43
43
|
|
44
44
|
def response_hash
|
45
|
-
@response_hash
|
45
|
+
@response_hash ||= @response.body[:get_all_response][:get_all_result]
|
46
46
|
end
|
47
47
|
|
48
48
|
module Support
|
data/lib/netsuite/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: netsuite
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.6
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2016-06-
|
13
|
+
date: 2016-06-08 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: savon
|