savon-SU 2.11.1b → 2.11.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/savon/client.rb +0 -9
- data/lib/savon/options.rb +1 -1
- data/lib/savon/version.rb +1 -1
- data/{savon-SU.gemspec → savon.gemspec} +3 -3
- metadata +8 -9
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2078f06f2a38c198d3a06dec0a3b8ff25100b527
|
|
4
|
+
data.tar.gz: 11d8930de6e00de969b7030f1702df9e636a9e8e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 946405e0ba41a22b02c19686feb472e6537be8b3fb2e8f36a7dc67a57ee9db02e3df829e5250844bed2562070e45f661944d1872016bc688daf1ea5f60312bbb
|
|
7
|
+
data.tar.gz: 5edf38d0d20bedb0f8ca297c13506356270545cf8fdc61159cfaac4ffaba45e806276bf8d51e6f9cf8f501386ed5cd84b32123f826b18ad7a3ff364b483b5b54
|
data/lib/savon/client.rb
CHANGED
|
@@ -28,15 +28,6 @@ module Savon
|
|
|
28
28
|
@wsdl.soap_actions
|
|
29
29
|
end
|
|
30
30
|
|
|
31
|
-
def parameters(operation_name)
|
|
32
|
-
raise_missing_wsdl_error! unless @wsdl.document?
|
|
33
|
-
if !@wsdl.operations.[](operation_name).[](:parameters).nil?
|
|
34
|
-
@wsdl.operations.[](operation_name).[](:parameters).keys
|
|
35
|
-
else
|
|
36
|
-
return nil
|
|
37
|
-
end
|
|
38
|
-
end
|
|
39
|
-
|
|
40
31
|
def operation(operation_name)
|
|
41
32
|
Operation.create(operation_name, @wsdl, @globals)
|
|
42
33
|
end
|
data/lib/savon/options.rb
CHANGED
data/lib/savon/version.rb
CHANGED
|
@@ -7,11 +7,11 @@ require "savon/version"
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "savon-SU"
|
|
9
9
|
s.version = Savon::VERSION
|
|
10
|
-
s.authors = "Daniel Harrington
|
|
11
|
-
s.email = "me@rubiii.com
|
|
10
|
+
s.authors = "Daniel Harrington"
|
|
11
|
+
s.email = "me@rubiii.com"
|
|
12
12
|
s.homepage = "http://savonrb.com"
|
|
13
13
|
s.summary = "Heavy metal SOAP client"
|
|
14
|
-
s.description = "
|
|
14
|
+
s.description = "modified for sketchup"
|
|
15
15
|
s.required_ruby_version = '>= 1.9.2'
|
|
16
16
|
|
|
17
17
|
s.rubyforge_project = s.name
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: savon-SU
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.11.
|
|
4
|
+
version: 2.11.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
- Daniel Harrington
|
|
7
|
+
- Daniel Harrington
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-07-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: nori
|
|
@@ -192,9 +192,8 @@ dependencies:
|
|
|
192
192
|
- - ~>
|
|
193
193
|
- !ruby/object:Gem::Version
|
|
194
194
|
version: '1.7'
|
|
195
|
-
description:
|
|
196
|
-
|
|
197
|
-
email: me@rubiii.com (sepultribe666@gmail.com)
|
|
195
|
+
description: modified for sketchup
|
|
196
|
+
email: me@rubiii.com
|
|
198
197
|
executables: []
|
|
199
198
|
extensions: []
|
|
200
199
|
extra_rdoc_files: []
|
|
@@ -230,7 +229,7 @@ files:
|
|
|
230
229
|
- lib/savon/response.rb
|
|
231
230
|
- lib/savon/soap_fault.rb
|
|
232
231
|
- lib/savon/version.rb
|
|
233
|
-
- savon
|
|
232
|
+
- savon.gemspec
|
|
234
233
|
- spec/fixtures/gzip/message.gz
|
|
235
234
|
- spec/fixtures/response/another_soap_fault.xml
|
|
236
235
|
- spec/fixtures/response/authentication.xml
|
|
@@ -305,9 +304,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
305
304
|
version: 1.9.2
|
|
306
305
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
307
306
|
requirements:
|
|
308
|
-
- - '
|
|
307
|
+
- - '>='
|
|
309
308
|
- !ruby/object:Gem::Version
|
|
310
|
-
version:
|
|
309
|
+
version: '0'
|
|
311
310
|
requirements: []
|
|
312
311
|
rubyforge_project: savon-SU
|
|
313
312
|
rubygems_version: 2.0.3
|