sekken 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +13 -0
- data/.travis.yml +11 -0
- data/.yardopts +6 -0
- data/CONTRIBUTING.md +46 -0
- data/Gemfile +27 -0
- data/MIT-LICENSE +20 -0
- data/README.md +28 -0
- data/Rakefile +21 -0
- data/donate.png +0 -0
- data/lib/sekken.rb +75 -0
- data/lib/sekken/envelope.rb +92 -0
- data/lib/sekken/errors.rb +9 -0
- data/lib/sekken/example_message.rb +41 -0
- data/lib/sekken/httpclient.rb +35 -0
- data/lib/sekken/importer.rb +77 -0
- data/lib/sekken/message.rb +135 -0
- data/lib/sekken/operation.rb +100 -0
- data/lib/sekken/resolver.rb +20 -0
- data/lib/sekken/response.rb +50 -0
- data/lib/sekken/version.rb +5 -0
- data/lib/sekken/wsdl.rb +86 -0
- data/lib/sekken/wsdl/binding.rb +64 -0
- data/lib/sekken/wsdl/binding_operation.rb +85 -0
- data/lib/sekken/wsdl/document.rb +83 -0
- data/lib/sekken/wsdl/document_collection.rb +61 -0
- data/lib/sekken/wsdl/input_output.rb +84 -0
- data/lib/sekken/wsdl/message.rb +38 -0
- data/lib/sekken/wsdl/operation.rb +47 -0
- data/lib/sekken/wsdl/port.rb +29 -0
- data/lib/sekken/wsdl/port_type.rb +38 -0
- data/lib/sekken/wsdl/port_type_operation.rb +42 -0
- data/lib/sekken/wsdl/service.rb +55 -0
- data/lib/sekken/xml/attribute.rb +13 -0
- data/lib/sekken/xml/element.rb +82 -0
- data/lib/sekken/xml/element_builder.rb +220 -0
- data/lib/sekken/xs/schema.rb +57 -0
- data/lib/sekken/xs/schema_collection.rb +49 -0
- data/lib/sekken/xs/types.rb +272 -0
- data/sekken.gemspec +42 -0
- data/spec/fixtures/response/another_soap_fault.xml +14 -0
- data/spec/fixtures/response/authentication.xml +14 -0
- data/spec/fixtures/response/header.xml +13 -0
- data/spec/fixtures/response/list.xml +18 -0
- data/spec/fixtures/response/multi_ref.xml +39 -0
- data/spec/fixtures/response/soap_fault.xml +8 -0
- data/spec/fixtures/response/soap_fault12.xml +18 -0
- data/spec/fixtures/response/taxcloud.xml +1 -0
- data/spec/fixtures/wsdl/amazon.wsdl +1920 -0
- data/spec/fixtures/wsdl/arrays_with_attributes.wsdl +117 -0
- data/spec/fixtures/wsdl/authentication.wsdl +63 -0
- data/spec/fixtures/wsdl/awse.wsdl +1510 -0
- data/spec/fixtures/wsdl/betfair.wsdl +2981 -0
- data/spec/fixtures/wsdl/blz_service.wsdl +88 -0
- data/spec/fixtures/wsdl/bookt/bookt.wsdl +11 -0
- data/spec/fixtures/wsdl/bookt/bookt0.xsd +433 -0
- data/spec/fixtures/wsdl/bookt/bookt1.xsd +42 -0
- data/spec/fixtures/wsdl/bookt/bookt10.xsd +38 -0
- data/spec/fixtures/wsdl/bookt/bookt11.xsd +17 -0
- data/spec/fixtures/wsdl/bookt/bookt12.xsd +18 -0
- data/spec/fixtures/wsdl/bookt/bookt13.xsd +22 -0
- data/spec/fixtures/wsdl/bookt/bookt14.xsd +27 -0
- data/spec/fixtures/wsdl/bookt/bookt15.xsd +28 -0
- data/spec/fixtures/wsdl/bookt/bookt2.wsdl +243 -0
- data/spec/fixtures/wsdl/bookt/bookt2.xsd +81 -0
- data/spec/fixtures/wsdl/bookt/bookt3.wsdl +286 -0
- data/spec/fixtures/wsdl/bookt/bookt3.xsd +61 -0
- data/spec/fixtures/wsdl/bookt/bookt4.xsd +35 -0
- data/spec/fixtures/wsdl/bookt/bookt5.xsd +22 -0
- data/spec/fixtures/wsdl/bookt/bookt6.xsd +26 -0
- data/spec/fixtures/wsdl/bookt/bookt7.xsd +18 -0
- data/spec/fixtures/wsdl/bookt/bookt8.xsd +22 -0
- data/spec/fixtures/wsdl/bookt/bookt9.xsd +29 -0
- data/spec/fixtures/wsdl/bronto.wsdl +3285 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange.wsdl +104 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange0.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange1.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange2.wsdl +119 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange2.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange3.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange4.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange5.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange6.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange7.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange8.xsd +1 -0
- data/spec/fixtures/wsdl/crowd.wsdl +2437 -0
- data/spec/fixtures/wsdl/data_exchange.wsdl +98 -0
- data/spec/fixtures/wsdl/document_literal_wrapped.wsdl +153 -0
- data/spec/fixtures/wsdl/economic.wsdl +65660 -0
- data/spec/fixtures/wsdl/edialog.wsdl +13148 -0
- data/spec/fixtures/wsdl/email_verification.wsdl +394 -0
- data/spec/fixtures/wsdl/equifax.wsdl +794 -0
- data/spec/fixtures/wsdl/geotrust.wsdl +156 -0
- data/spec/fixtures/wsdl/interhome.wsdl +2137 -0
- data/spec/fixtures/wsdl/iws.wsdl +695 -0
- data/spec/fixtures/wsdl/jetairways.wsdl +156 -0
- data/spec/fixtures/wsdl/jira.wsdl +3890 -0
- data/spec/fixtures/wsdl/juniper.wsdl +215 -0
- data/spec/fixtures/wsdl/namespaced_actions.wsdl +307 -0
- data/spec/fixtures/wsdl/oracle.wsdl +3629 -0
- data/spec/fixtures/wsdl/ratp.wsdl +955 -0
- data/spec/fixtures/wsdl/rio2/rio2.wsdl +74 -0
- data/spec/fixtures/wsdl/rio2/rio2_0.wsdl +55 -0
- data/spec/fixtures/wsdl/rio2/rio2_0.xsd +58 -0
- data/spec/fixtures/wsdl/rio2/rio2_1.xsd +41 -0
- data/spec/fixtures/wsdl/rio2/rio2_2.xsd +222 -0
- data/spec/fixtures/wsdl/rio2/rio2_3.xsd +10 -0
- data/spec/fixtures/wsdl/rpc_literal.wsdl +105 -0
- data/spec/fixtures/wsdl/spyne.wsdl +70 -0
- data/spec/fixtures/wsdl/stockquote.wsdl +124 -0
- data/spec/fixtures/wsdl/taxcloud.wsdl +934 -0
- data/spec/fixtures/wsdl/team_software/team_software.wsdl +542 -0
- data/spec/fixtures/wsdl/team_software/team_software0.xsd +448 -0
- data/spec/fixtures/wsdl/team_software/team_software1.xsd +41 -0
- data/spec/fixtures/wsdl/team_software/team_software2.xsd +258 -0
- data/spec/fixtures/wsdl/team_software/team_software3.xsd +14 -0
- data/spec/fixtures/wsdl/telefonkatalogen.wsdl +45 -0
- data/spec/fixtures/wsdl/temperature.wsdl +136 -0
- data/spec/fixtures/wsdl/wasmuth/wasmuth.wsdl +157 -0
- data/spec/fixtures/wsdl/wasmuth/wasmuth1.xsd +210 -0
- data/spec/fixtures/wsdl/wasmuth/wasmuth2.xsd +549 -0
- data/spec/fixtures/wsdl/xignite.wsdl +3470 -0
- data/spec/fixtures/wsdl/yahoo.wsdl +2425 -0
- data/spec/fixtures/wsdl/zanox_export_service.xml +520 -0
- data/spec/integration/amazon_spec.rb +51 -0
- data/spec/integration/authentication_spec.rb +38 -0
- data/spec/integration/awse_spec.rb +95 -0
- data/spec/integration/betfair_spec.rb +179 -0
- data/spec/integration/blz_service_spec.rb +46 -0
- data/spec/integration/bookt_spec.rb +59 -0
- data/spec/integration/bronto_spec.rb +178 -0
- data/spec/integration/bydexchange_spec.rb +40 -0
- data/spec/integration/crowd_spec.rb +44 -0
- data/spec/integration/data_exchange_spec.rb +27 -0
- data/spec/integration/document_literal_spec.rb +104 -0
- data/spec/integration/economic_spec.rb +64 -0
- data/spec/integration/email_verification_spec.rb +82 -0
- data/spec/integration/equifax_spec.rb +216 -0
- data/spec/integration/geotrust_spec.rb +17 -0
- data/spec/integration/interhome_spec.rb +156 -0
- data/spec/integration/iws_spec.rb +27 -0
- data/spec/integration/jetairways_spec.rb +142 -0
- data/spec/integration/jira_spec.rb +27 -0
- data/spec/integration/juniper_spec.rb +20 -0
- data/spec/integration/namespaced_actions_spec.rb +37 -0
- data/spec/integration/oracle_spec.rb +61 -0
- data/spec/integration/ratp_spec.rb +178 -0
- data/spec/integration/rio2_spec.rb +56 -0
- data/spec/integration/rpc_literal_spec.rb +101 -0
- data/spec/integration/spyne_spec.rb +60 -0
- data/spec/integration/stockquote_spec.rb +46 -0
- data/spec/integration/taxcloud_spec.rb +45 -0
- data/spec/integration/team_software_spec.rb +51 -0
- data/spec/integration/telefonkatalogen_spec.rb +42 -0
- data/spec/integration/temperature_spec.rb +71 -0
- data/spec/integration/wasmuth_spec.rb +47 -0
- data/spec/integration/xignite_spec.rb +112 -0
- data/spec/integration/yahoo_spec.rb +116 -0
- data/spec/sekken/httpclient_spec.rb +41 -0
- data/spec/sekken/operation/build_spec.rb +308 -0
- data/spec/sekken/operation/document_literal_spec.rb +53 -0
- data/spec/sekken/operation/example_body_spec.rb +95 -0
- data/spec/sekken/operation/rpc_literal_spec.rb +50 -0
- data/spec/sekken/operation_spec.rb +169 -0
- data/spec/sekken/resolver_spec.rb +38 -0
- data/spec/sekken/response_spec.rb +17 -0
- data/spec/sekken/wsdl/document_spec.rb +191 -0
- data/spec/sekken/wsdl_spec.rb +46 -0
- data/spec/sekken/xs/complex_type_spec.rb +197 -0
- data/spec/sekken/xs/element_spec.rb +82 -0
- data/spec/sekken/xs/simple_type_spec.rb +39 -0
- data/spec/sekken_spec.rb +128 -0
- data/spec/spec_helper.rb +37 -0
- data/spec/support/fixture.rb +19 -0
- data/spec/support/http_mock.rb +43 -0
- metadata +344 -0
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,37 @@
|
|
1
|
+
require 'bundler'
|
2
|
+
Bundler.setup(:default, :development)
|
3
|
+
|
4
|
+
unless RUBY_PLATFORM =~ /java/
|
5
|
+
require 'simplecov'
|
6
|
+
require 'coveralls'
|
7
|
+
|
8
|
+
SimpleCov.formatter = Coveralls::SimpleCov::Formatter
|
9
|
+
SimpleCov.start do
|
10
|
+
add_filter('spec')
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
require 'sekken'
|
15
|
+
|
16
|
+
if logger_to_enable = ENV['DEBUG']
|
17
|
+
logger = Logging.logger[logger_to_enable]
|
18
|
+
logger.add_appenders(Logging.appenders.stdout)
|
19
|
+
logger.level = :debug
|
20
|
+
end
|
21
|
+
|
22
|
+
if ENV['GRAPH']
|
23
|
+
require 'rubydeps'
|
24
|
+
Rubydeps.start
|
25
|
+
end
|
26
|
+
|
27
|
+
require 'equivalent-xml'
|
28
|
+
require 'equivalent-xml/rspec_matchers'
|
29
|
+
|
30
|
+
support_files = File.expand_path('spec/support/**/*.rb')
|
31
|
+
Dir[support_files].each { |file| require file }
|
32
|
+
|
33
|
+
RSpec.configure do |config|
|
34
|
+
config.include SpecSupport
|
35
|
+
config.mock_with :mocha
|
36
|
+
config.order = 'random'
|
37
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
module SpecSupport
|
2
|
+
|
3
|
+
class Fixture
|
4
|
+
|
5
|
+
def self.path(path)
|
6
|
+
absolute_path = File.expand_path("../../fixtures/#{path}", __FILE__)
|
7
|
+
fixture = Dir.glob("#{absolute_path}*").first
|
8
|
+
|
9
|
+
raise ArgumentError, "Unable to find fixture #{path.inspect}" unless fixture
|
10
|
+
fixture
|
11
|
+
end
|
12
|
+
|
13
|
+
end
|
14
|
+
|
15
|
+
def fixture(path)
|
16
|
+
Fixture.path(path)
|
17
|
+
end
|
18
|
+
|
19
|
+
end
|
@@ -0,0 +1,43 @@
|
|
1
|
+
module SpecSupport
|
2
|
+
|
3
|
+
class HTTPMock
|
4
|
+
|
5
|
+
MockError = Class.new(StandardError)
|
6
|
+
|
7
|
+
def initialize
|
8
|
+
@fakes = {}
|
9
|
+
end
|
10
|
+
|
11
|
+
def client
|
12
|
+
:mock_client
|
13
|
+
end
|
14
|
+
|
15
|
+
def get(url)
|
16
|
+
@fakes[url] or raise_mock_error! :get, url
|
17
|
+
end
|
18
|
+
|
19
|
+
def post(url, headers, body)
|
20
|
+
@fakes[url] or raise_mock_error! :post, url
|
21
|
+
end
|
22
|
+
|
23
|
+
def fake_request(url, fixture = nil)
|
24
|
+
@fakes[url] = fixture ? load_fixture(fixture) : ''
|
25
|
+
end
|
26
|
+
|
27
|
+
private
|
28
|
+
|
29
|
+
def load_fixture(fixture)
|
30
|
+
File.read Fixture.path(fixture)
|
31
|
+
end
|
32
|
+
|
33
|
+
def raise_mock_error!(method, url)
|
34
|
+
raise MockError, "Unmocked HTTP #{method.to_s.upcase} request to #{url.inspect}"
|
35
|
+
end
|
36
|
+
|
37
|
+
end
|
38
|
+
|
39
|
+
def http_mock
|
40
|
+
@http_mock ||= HTTPMock.new
|
41
|
+
end
|
42
|
+
|
43
|
+
end
|
metadata
ADDED
@@ -0,0 +1,344 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: sekken
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Daniel Harrington
|
8
|
+
- Tim Jarratt
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2014-04-14 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: nori
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
requirements:
|
18
|
+
- - ~>
|
19
|
+
- !ruby/object:Gem::Version
|
20
|
+
version: 2.2.0
|
21
|
+
type: :runtime
|
22
|
+
prerelease: false
|
23
|
+
version_requirements: !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - ~>
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
version: 2.2.0
|
28
|
+
- !ruby/object:Gem::Dependency
|
29
|
+
name: nokogiri
|
30
|
+
requirement: !ruby/object:Gem::Requirement
|
31
|
+
requirements:
|
32
|
+
- - '>='
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: 1.4.0
|
35
|
+
type: :runtime
|
36
|
+
prerelease: false
|
37
|
+
version_requirements: !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
39
|
+
- - '>='
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: 1.4.0
|
42
|
+
- !ruby/object:Gem::Dependency
|
43
|
+
name: builder
|
44
|
+
requirement: !ruby/object:Gem::Requirement
|
45
|
+
requirements:
|
46
|
+
- - '>='
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: 3.0.0
|
49
|
+
type: :runtime
|
50
|
+
prerelease: false
|
51
|
+
version_requirements: !ruby/object:Gem::Requirement
|
52
|
+
requirements:
|
53
|
+
- - '>='
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: 3.0.0
|
56
|
+
- !ruby/object:Gem::Dependency
|
57
|
+
name: httpclient
|
58
|
+
requirement: !ruby/object:Gem::Requirement
|
59
|
+
requirements:
|
60
|
+
- - ~>
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: '2.3'
|
63
|
+
type: :runtime
|
64
|
+
prerelease: false
|
65
|
+
version_requirements: !ruby/object:Gem::Requirement
|
66
|
+
requirements:
|
67
|
+
- - ~>
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '2.3'
|
70
|
+
- !ruby/object:Gem::Dependency
|
71
|
+
name: logging
|
72
|
+
requirement: !ruby/object:Gem::Requirement
|
73
|
+
requirements:
|
74
|
+
- - ~>
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: '1.8'
|
77
|
+
type: :runtime
|
78
|
+
prerelease: false
|
79
|
+
version_requirements: !ruby/object:Gem::Requirement
|
80
|
+
requirements:
|
81
|
+
- - ~>
|
82
|
+
- !ruby/object:Gem::Version
|
83
|
+
version: '1.8'
|
84
|
+
- !ruby/object:Gem::Dependency
|
85
|
+
name: rake
|
86
|
+
requirement: !ruby/object:Gem::Requirement
|
87
|
+
requirements:
|
88
|
+
- - ~>
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: '10.1'
|
91
|
+
type: :development
|
92
|
+
prerelease: false
|
93
|
+
version_requirements: !ruby/object:Gem::Requirement
|
94
|
+
requirements:
|
95
|
+
- - ~>
|
96
|
+
- !ruby/object:Gem::Version
|
97
|
+
version: '10.1'
|
98
|
+
- !ruby/object:Gem::Dependency
|
99
|
+
name: rspec
|
100
|
+
requirement: !ruby/object:Gem::Requirement
|
101
|
+
requirements:
|
102
|
+
- - ~>
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: '2.14'
|
105
|
+
type: :development
|
106
|
+
prerelease: false
|
107
|
+
version_requirements: !ruby/object:Gem::Requirement
|
108
|
+
requirements:
|
109
|
+
- - ~>
|
110
|
+
- !ruby/object:Gem::Version
|
111
|
+
version: '2.14'
|
112
|
+
- !ruby/object:Gem::Dependency
|
113
|
+
name: mocha
|
114
|
+
requirement: !ruby/object:Gem::Requirement
|
115
|
+
requirements:
|
116
|
+
- - ~>
|
117
|
+
- !ruby/object:Gem::Version
|
118
|
+
version: '0.14'
|
119
|
+
type: :development
|
120
|
+
prerelease: false
|
121
|
+
version_requirements: !ruby/object:Gem::Requirement
|
122
|
+
requirements:
|
123
|
+
- - ~>
|
124
|
+
- !ruby/object:Gem::Version
|
125
|
+
version: '0.14'
|
126
|
+
- !ruby/object:Gem::Dependency
|
127
|
+
name: equivalent-xml
|
128
|
+
requirement: !ruby/object:Gem::Requirement
|
129
|
+
requirements:
|
130
|
+
- - ~>
|
131
|
+
- !ruby/object:Gem::Version
|
132
|
+
version: '0.3'
|
133
|
+
type: :development
|
134
|
+
prerelease: false
|
135
|
+
version_requirements: !ruby/object:Gem::Requirement
|
136
|
+
requirements:
|
137
|
+
- - ~>
|
138
|
+
- !ruby/object:Gem::Version
|
139
|
+
version: '0.3'
|
140
|
+
description: Sekken is an experimental SOAP client for the Ruby community.
|
141
|
+
email: tjarratt@gmail.com
|
142
|
+
executables: []
|
143
|
+
extensions: []
|
144
|
+
extra_rdoc_files: []
|
145
|
+
files:
|
146
|
+
- .gitignore
|
147
|
+
- .travis.yml
|
148
|
+
- .yardopts
|
149
|
+
- CONTRIBUTING.md
|
150
|
+
- Gemfile
|
151
|
+
- MIT-LICENSE
|
152
|
+
- README.md
|
153
|
+
- Rakefile
|
154
|
+
- donate.png
|
155
|
+
- lib/sekken.rb
|
156
|
+
- lib/sekken/envelope.rb
|
157
|
+
- lib/sekken/errors.rb
|
158
|
+
- lib/sekken/example_message.rb
|
159
|
+
- lib/sekken/httpclient.rb
|
160
|
+
- lib/sekken/importer.rb
|
161
|
+
- lib/sekken/message.rb
|
162
|
+
- lib/sekken/operation.rb
|
163
|
+
- lib/sekken/resolver.rb
|
164
|
+
- lib/sekken/response.rb
|
165
|
+
- lib/sekken/version.rb
|
166
|
+
- lib/sekken/wsdl.rb
|
167
|
+
- lib/sekken/wsdl/binding.rb
|
168
|
+
- lib/sekken/wsdl/binding_operation.rb
|
169
|
+
- lib/sekken/wsdl/document.rb
|
170
|
+
- lib/sekken/wsdl/document_collection.rb
|
171
|
+
- lib/sekken/wsdl/input_output.rb
|
172
|
+
- lib/sekken/wsdl/message.rb
|
173
|
+
- lib/sekken/wsdl/operation.rb
|
174
|
+
- lib/sekken/wsdl/port.rb
|
175
|
+
- lib/sekken/wsdl/port_type.rb
|
176
|
+
- lib/sekken/wsdl/port_type_operation.rb
|
177
|
+
- lib/sekken/wsdl/service.rb
|
178
|
+
- lib/sekken/xml/attribute.rb
|
179
|
+
- lib/sekken/xml/element.rb
|
180
|
+
- lib/sekken/xml/element_builder.rb
|
181
|
+
- lib/sekken/xs/schema.rb
|
182
|
+
- lib/sekken/xs/schema_collection.rb
|
183
|
+
- lib/sekken/xs/types.rb
|
184
|
+
- sekken.gemspec
|
185
|
+
- spec/fixtures/response/another_soap_fault.xml
|
186
|
+
- spec/fixtures/response/authentication.xml
|
187
|
+
- spec/fixtures/response/header.xml
|
188
|
+
- spec/fixtures/response/list.xml
|
189
|
+
- spec/fixtures/response/multi_ref.xml
|
190
|
+
- spec/fixtures/response/soap_fault.xml
|
191
|
+
- spec/fixtures/response/soap_fault12.xml
|
192
|
+
- spec/fixtures/response/taxcloud.xml
|
193
|
+
- spec/fixtures/wsdl/amazon.wsdl
|
194
|
+
- spec/fixtures/wsdl/arrays_with_attributes.wsdl
|
195
|
+
- spec/fixtures/wsdl/authentication.wsdl
|
196
|
+
- spec/fixtures/wsdl/awse.wsdl
|
197
|
+
- spec/fixtures/wsdl/betfair.wsdl
|
198
|
+
- spec/fixtures/wsdl/blz_service.wsdl
|
199
|
+
- spec/fixtures/wsdl/bookt/bookt.wsdl
|
200
|
+
- spec/fixtures/wsdl/bookt/bookt0.xsd
|
201
|
+
- spec/fixtures/wsdl/bookt/bookt1.xsd
|
202
|
+
- spec/fixtures/wsdl/bookt/bookt10.xsd
|
203
|
+
- spec/fixtures/wsdl/bookt/bookt11.xsd
|
204
|
+
- spec/fixtures/wsdl/bookt/bookt12.xsd
|
205
|
+
- spec/fixtures/wsdl/bookt/bookt13.xsd
|
206
|
+
- spec/fixtures/wsdl/bookt/bookt14.xsd
|
207
|
+
- spec/fixtures/wsdl/bookt/bookt15.xsd
|
208
|
+
- spec/fixtures/wsdl/bookt/bookt2.wsdl
|
209
|
+
- spec/fixtures/wsdl/bookt/bookt2.xsd
|
210
|
+
- spec/fixtures/wsdl/bookt/bookt3.wsdl
|
211
|
+
- spec/fixtures/wsdl/bookt/bookt3.xsd
|
212
|
+
- spec/fixtures/wsdl/bookt/bookt4.xsd
|
213
|
+
- spec/fixtures/wsdl/bookt/bookt5.xsd
|
214
|
+
- spec/fixtures/wsdl/bookt/bookt6.xsd
|
215
|
+
- spec/fixtures/wsdl/bookt/bookt7.xsd
|
216
|
+
- spec/fixtures/wsdl/bookt/bookt8.xsd
|
217
|
+
- spec/fixtures/wsdl/bookt/bookt9.xsd
|
218
|
+
- spec/fixtures/wsdl/bronto.wsdl
|
219
|
+
- spec/fixtures/wsdl/bydexchange/bydexchange.wsdl
|
220
|
+
- spec/fixtures/wsdl/bydexchange/bydexchange0.xsd
|
221
|
+
- spec/fixtures/wsdl/bydexchange/bydexchange1.xsd
|
222
|
+
- spec/fixtures/wsdl/bydexchange/bydexchange2.wsdl
|
223
|
+
- spec/fixtures/wsdl/bydexchange/bydexchange2.xsd
|
224
|
+
- spec/fixtures/wsdl/bydexchange/bydexchange3.xsd
|
225
|
+
- spec/fixtures/wsdl/bydexchange/bydexchange4.xsd
|
226
|
+
- spec/fixtures/wsdl/bydexchange/bydexchange5.xsd
|
227
|
+
- spec/fixtures/wsdl/bydexchange/bydexchange6.xsd
|
228
|
+
- spec/fixtures/wsdl/bydexchange/bydexchange7.xsd
|
229
|
+
- spec/fixtures/wsdl/bydexchange/bydexchange8.xsd
|
230
|
+
- spec/fixtures/wsdl/crowd.wsdl
|
231
|
+
- spec/fixtures/wsdl/data_exchange.wsdl
|
232
|
+
- spec/fixtures/wsdl/document_literal_wrapped.wsdl
|
233
|
+
- spec/fixtures/wsdl/economic.wsdl
|
234
|
+
- spec/fixtures/wsdl/edialog.wsdl
|
235
|
+
- spec/fixtures/wsdl/email_verification.wsdl
|
236
|
+
- spec/fixtures/wsdl/equifax.wsdl
|
237
|
+
- spec/fixtures/wsdl/geotrust.wsdl
|
238
|
+
- spec/fixtures/wsdl/interhome.wsdl
|
239
|
+
- spec/fixtures/wsdl/iws.wsdl
|
240
|
+
- spec/fixtures/wsdl/jetairways.wsdl
|
241
|
+
- spec/fixtures/wsdl/jira.wsdl
|
242
|
+
- spec/fixtures/wsdl/juniper.wsdl
|
243
|
+
- spec/fixtures/wsdl/namespaced_actions.wsdl
|
244
|
+
- spec/fixtures/wsdl/oracle.wsdl
|
245
|
+
- spec/fixtures/wsdl/ratp.wsdl
|
246
|
+
- spec/fixtures/wsdl/rio2/rio2.wsdl
|
247
|
+
- spec/fixtures/wsdl/rio2/rio2_0.wsdl
|
248
|
+
- spec/fixtures/wsdl/rio2/rio2_0.xsd
|
249
|
+
- spec/fixtures/wsdl/rio2/rio2_1.xsd
|
250
|
+
- spec/fixtures/wsdl/rio2/rio2_2.xsd
|
251
|
+
- spec/fixtures/wsdl/rio2/rio2_3.xsd
|
252
|
+
- spec/fixtures/wsdl/rpc_literal.wsdl
|
253
|
+
- spec/fixtures/wsdl/spyne.wsdl
|
254
|
+
- spec/fixtures/wsdl/stockquote.wsdl
|
255
|
+
- spec/fixtures/wsdl/taxcloud.wsdl
|
256
|
+
- spec/fixtures/wsdl/team_software/team_software.wsdl
|
257
|
+
- spec/fixtures/wsdl/team_software/team_software0.xsd
|
258
|
+
- spec/fixtures/wsdl/team_software/team_software1.xsd
|
259
|
+
- spec/fixtures/wsdl/team_software/team_software2.xsd
|
260
|
+
- spec/fixtures/wsdl/team_software/team_software3.xsd
|
261
|
+
- spec/fixtures/wsdl/telefonkatalogen.wsdl
|
262
|
+
- spec/fixtures/wsdl/temperature.wsdl
|
263
|
+
- spec/fixtures/wsdl/wasmuth/wasmuth.wsdl
|
264
|
+
- spec/fixtures/wsdl/wasmuth/wasmuth1.xsd
|
265
|
+
- spec/fixtures/wsdl/wasmuth/wasmuth2.xsd
|
266
|
+
- spec/fixtures/wsdl/xignite.wsdl
|
267
|
+
- spec/fixtures/wsdl/yahoo.wsdl
|
268
|
+
- spec/fixtures/wsdl/zanox_export_service.xml
|
269
|
+
- spec/integration/amazon_spec.rb
|
270
|
+
- spec/integration/authentication_spec.rb
|
271
|
+
- spec/integration/awse_spec.rb
|
272
|
+
- spec/integration/betfair_spec.rb
|
273
|
+
- spec/integration/blz_service_spec.rb
|
274
|
+
- spec/integration/bookt_spec.rb
|
275
|
+
- spec/integration/bronto_spec.rb
|
276
|
+
- spec/integration/bydexchange_spec.rb
|
277
|
+
- spec/integration/crowd_spec.rb
|
278
|
+
- spec/integration/data_exchange_spec.rb
|
279
|
+
- spec/integration/document_literal_spec.rb
|
280
|
+
- spec/integration/economic_spec.rb
|
281
|
+
- spec/integration/email_verification_spec.rb
|
282
|
+
- spec/integration/equifax_spec.rb
|
283
|
+
- spec/integration/geotrust_spec.rb
|
284
|
+
- spec/integration/interhome_spec.rb
|
285
|
+
- spec/integration/iws_spec.rb
|
286
|
+
- spec/integration/jetairways_spec.rb
|
287
|
+
- spec/integration/jira_spec.rb
|
288
|
+
- spec/integration/juniper_spec.rb
|
289
|
+
- spec/integration/namespaced_actions_spec.rb
|
290
|
+
- spec/integration/oracle_spec.rb
|
291
|
+
- spec/integration/ratp_spec.rb
|
292
|
+
- spec/integration/rio2_spec.rb
|
293
|
+
- spec/integration/rpc_literal_spec.rb
|
294
|
+
- spec/integration/spyne_spec.rb
|
295
|
+
- spec/integration/stockquote_spec.rb
|
296
|
+
- spec/integration/taxcloud_spec.rb
|
297
|
+
- spec/integration/team_software_spec.rb
|
298
|
+
- spec/integration/telefonkatalogen_spec.rb
|
299
|
+
- spec/integration/temperature_spec.rb
|
300
|
+
- spec/integration/wasmuth_spec.rb
|
301
|
+
- spec/integration/xignite_spec.rb
|
302
|
+
- spec/integration/yahoo_spec.rb
|
303
|
+
- spec/sekken/httpclient_spec.rb
|
304
|
+
- spec/sekken/operation/build_spec.rb
|
305
|
+
- spec/sekken/operation/document_literal_spec.rb
|
306
|
+
- spec/sekken/operation/example_body_spec.rb
|
307
|
+
- spec/sekken/operation/rpc_literal_spec.rb
|
308
|
+
- spec/sekken/operation_spec.rb
|
309
|
+
- spec/sekken/resolver_spec.rb
|
310
|
+
- spec/sekken/response_spec.rb
|
311
|
+
- spec/sekken/wsdl/document_spec.rb
|
312
|
+
- spec/sekken/wsdl_spec.rb
|
313
|
+
- spec/sekken/xs/complex_type_spec.rb
|
314
|
+
- spec/sekken/xs/element_spec.rb
|
315
|
+
- spec/sekken/xs/simple_type_spec.rb
|
316
|
+
- spec/sekken_spec.rb
|
317
|
+
- spec/spec_helper.rb
|
318
|
+
- spec/support/fixture.rb
|
319
|
+
- spec/support/http_mock.rb
|
320
|
+
homepage: http://savonrb.com
|
321
|
+
licenses:
|
322
|
+
- MIT
|
323
|
+
metadata: {}
|
324
|
+
post_install_message:
|
325
|
+
rdoc_options: []
|
326
|
+
require_paths:
|
327
|
+
- lib
|
328
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
329
|
+
requirements:
|
330
|
+
- - '>='
|
331
|
+
- !ruby/object:Gem::Version
|
332
|
+
version: '0'
|
333
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
334
|
+
requirements:
|
335
|
+
- - '>='
|
336
|
+
- !ruby/object:Gem::Version
|
337
|
+
version: '0'
|
338
|
+
requirements: []
|
339
|
+
rubyforge_project: sekken
|
340
|
+
rubygems_version: 2.1.11
|
341
|
+
signing_key:
|
342
|
+
specification_version: 4
|
343
|
+
summary: Next-Gen SOAP client
|
344
|
+
test_files: []
|