savon 2.1.0 → 2.2.0

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.
@@ -3,10 +3,13 @@ require "spec_helper"
3
3
  describe Savon::SOAPFault do
4
4
  let(:soap_fault) { Savon::SOAPFault.new new_response(:body => Fixture.response(:soap_fault)), nori }
5
5
  let(:soap_fault2) { Savon::SOAPFault.new new_response(:body => Fixture.response(:soap_fault12)), nori }
6
+ let(:soap_fault_nc) { Savon::SOAPFault.new new_response(:body => Fixture.response(:soap_fault)), nori_no_convert }
7
+ let(:soap_fault_nc2) { Savon::SOAPFault.new new_response(:body => Fixture.response(:soap_fault12)), nori_no_convert }
6
8
  let(:another_soap_fault) { Savon::SOAPFault.new new_response(:body => Fixture.response(:another_soap_fault)), nori }
7
9
  let(:no_fault) { Savon::SOAPFault.new new_response, nori }
8
10
 
9
11
  let(:nori) { Nori.new(:strip_namespaces => true, :convert_tags_to => lambda { |tag| tag.snakecase.to_sym }) }
12
+ let(:nori_no_convert) { Nori.new(:strip_namespaces => true, :convert_tags_to => nil) }
10
13
 
11
14
  it "inherits from Savon::Error" do
12
15
  expect(Savon::SOAPFault.ancestors).to include(Savon::Error)
@@ -52,6 +55,14 @@ describe Savon::SOAPFault do
52
55
  it "returns a SOAP fault message (with different namespaces)" do
53
56
  expect(another_soap_fault.send method).to eq("(ERR_NO_SESSION) Wrong session message")
54
57
  end
58
+
59
+ it "works even if the keys are different in a SOAP 1.1 fault message" do
60
+ expect(soap_fault_nc.send method).to eq("(soap:Server) Fault occurred while processing.")
61
+ end
62
+
63
+ it "works even if the keys are different in a SOAP 1.2 fault message" do
64
+ expect(soap_fault_nc2.send method).to eq("(soap:Sender) Sender Timeout")
65
+ end
55
66
  end
56
67
  end
57
68
 
@@ -82,6 +93,27 @@ describe Savon::SOAPFault do
82
93
 
83
94
  expect(soap_fault2.to_hash).to eq(expected)
84
95
  end
96
+
97
+ it "works even if the keys are different" do
98
+ expected = {
99
+ "Fault" => {
100
+ "Code" => {
101
+ "Value" => "soap:Sender",
102
+ "Subcode"=> {
103
+ "Value" => "m:MessageTimeout"
104
+ }
105
+ },
106
+ "Reason" => {
107
+ "Text" => "Sender Timeout"
108
+ },
109
+ "Detail" => {
110
+ "MaxTime" => "P5M"
111
+ }
112
+ }
113
+ }
114
+
115
+ expect(soap_fault_nc2.to_hash).to eq(expected)
116
+ end
85
117
  end
86
118
 
87
119
  def new_response(options = {})
@@ -11,16 +11,17 @@ end
11
11
  require "savon"
12
12
  require "rspec"
13
13
 
14
+ # don't have HTTPI lazy-load HTTPClient, because then
15
+ # it can't actually be refered to inside the specs.
16
+ require "httpclient"
17
+
18
+ support_files = File.expand_path("spec/support/**/*.rb")
19
+ Dir[support_files].each { |file| require file }
20
+
14
21
  RSpec.configure do |config|
22
+ config.include SpecSupport
15
23
  config.mock_with :mocha
16
24
  config.order = "random"
17
25
  end
18
26
 
19
27
  HTTPI.log = false
20
-
21
- # don't have HTTPI lazy-load HTTPClient, because then
22
- # it can't actually be refered to inside the specs.
23
- require "httpclient"
24
-
25
- require "support/endpoint"
26
- require "support/fixture"
@@ -0,0 +1,9 @@
1
+ module SpecSupport
2
+
3
+ def call_and_fail_gracefully(client, *args, &block)
4
+ client.call(*args, &block)
5
+ rescue Savon::SOAPFault => e
6
+ pending e.message
7
+ end
8
+
9
+ end
@@ -0,0 +1,25 @@
1
+ module SpecSupport
2
+
3
+ def mock_stdout
4
+ original_stdout = $stdout
5
+
6
+ stdout = StringIO.new
7
+ $stdout = stdout
8
+
9
+ yield
10
+
11
+ $stdout = original_stdout
12
+ stdout
13
+ end
14
+
15
+ def silence_stdout
16
+ original_stdout = $stdout
17
+ $stdout = StringIO.new
18
+
19
+ result = yield
20
+
21
+ $stdout = original_stdout
22
+ result
23
+ end
24
+
25
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: savon
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.0
4
+ version: 2.2.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-02-03 00:00:00.000000000 Z
12
+ date: 2013-04-21 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: nori
@@ -18,7 +18,7 @@ dependencies:
18
18
  requirements:
19
19
  - - ~>
20
20
  - !ruby/object:Gem::Version
21
- version: 2.0.3
21
+ version: 2.1.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ~>
28
28
  - !ruby/object:Gem::Version
29
- version: 2.0.3
29
+ version: 2.1.0
30
30
  - !ruby/object:Gem::Dependency
31
31
  name: httpi
32
32
  requirement: !ruby/object:Gem::Requirement
@@ -50,7 +50,7 @@ dependencies:
50
50
  requirements:
51
51
  - - ~>
52
52
  - !ruby/object:Gem::Version
53
- version: 3.0.0
53
+ version: 3.1.0
54
54
  type: :runtime
55
55
  prerelease: false
56
56
  version_requirements: !ruby/object:Gem::Requirement
@@ -58,7 +58,7 @@ dependencies:
58
58
  requirements:
59
59
  - - ~>
60
60
  - !ruby/object:Gem::Version
61
- version: 3.0.0
61
+ version: 3.1.0
62
62
  - !ruby/object:Gem::Dependency
63
63
  name: akami
64
64
  requirement: !ruby/object:Gem::Requirement
@@ -144,17 +144,17 @@ dependencies:
144
144
  requirement: !ruby/object:Gem::Requirement
145
145
  none: false
146
146
  requirements:
147
- - - ! '>='
147
+ - - '='
148
148
  - !ruby/object:Gem::Version
149
- version: 2.0.0.b3
149
+ version: 2.0.0.b4
150
150
  type: :development
151
151
  prerelease: false
152
152
  version_requirements: !ruby/object:Gem::Requirement
153
153
  none: false
154
154
  requirements:
155
- - - ! '>='
155
+ - - '='
156
156
  - !ruby/object:Gem::Version
157
- version: 2.0.0.b3
157
+ version: 2.0.0.b4
158
158
  - !ruby/object:Gem::Dependency
159
159
  name: rake
160
160
  requirement: !ruby/object:Gem::Requirement
@@ -219,17 +219,17 @@ dependencies:
219
219
  - - ~>
220
220
  - !ruby/object:Gem::Version
221
221
  version: '1.7'
222
- description: Delicious SOAP for the Ruby community
222
+ description: Heavy metal SOAP client
223
223
  email: me@rubiii.com
224
224
  executables: []
225
225
  extensions: []
226
226
  extra_rdoc_files: []
227
227
  files:
228
228
  - .gitignore
229
- - .rspec
230
229
  - .travis.yml
231
230
  - .yardopts
232
231
  - CHANGELOG.md
232
+ - CONTRIBUTING.md
233
233
  - Gemfile
234
234
  - LICENSE
235
235
  - README.md
@@ -255,7 +255,6 @@ files:
255
255
  - lib/savon/soap_fault.rb
256
256
  - lib/savon/version.rb
257
257
  - savon.gemspec
258
- - savon.sublime-workspace
259
258
  - spec/fixtures/gzip/message.gz
260
259
  - spec/fixtures/response/another_soap_fault.xml
261
260
  - spec/fixtures/response/authentication.xml
@@ -270,10 +269,15 @@ files:
270
269
  - spec/fixtures/ssl/client_encrypted_key_cert.pem
271
270
  - spec/fixtures/ssl/client_key.pem
272
271
  - spec/fixtures/wsdl/authentication.xml
272
+ - spec/fixtures/wsdl/betfair.xml
273
+ - spec/fixtures/wsdl/edialog.xml
274
+ - spec/fixtures/wsdl/interhome.xml
273
275
  - spec/fixtures/wsdl/lower_camel.xml
274
276
  - spec/fixtures/wsdl/multiple_namespaces.xml
275
277
  - spec/fixtures/wsdl/multiple_types.xml
276
278
  - spec/fixtures/wsdl/taxcloud.xml
279
+ - spec/fixtures/wsdl/team_software.xml
280
+ - spec/fixtures/wsdl/wasmuth.xml
277
281
  - spec/integration/email_example_spec.rb
278
282
  - spec/integration/ratp_example_spec.rb
279
283
  - spec/integration/stockquote_example_spec.rb
@@ -284,6 +288,7 @@ files:
284
288
  - spec/savon/builder_spec.rb
285
289
  - spec/savon/client_spec.rb
286
290
  - spec/savon/core_ext/string_spec.rb
291
+ - spec/savon/features/message_tag_spec.rb
287
292
  - spec/savon/http_error_spec.rb
288
293
  - spec/savon/log_message_spec.rb
289
294
  - spec/savon/mock_spec.rb
@@ -297,6 +302,8 @@ files:
297
302
  - spec/spec_helper.rb
298
303
  - spec/support/endpoint.rb
299
304
  - spec/support/fixture.rb
305
+ - spec/support/integration.rb
306
+ - spec/support/stdout.rb
300
307
  homepage: http://savonrb.com
301
308
  licenses: []
302
309
  post_install_message:
@@ -311,7 +318,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
311
318
  version: '0'
312
319
  segments:
313
320
  - 0
314
- hash: -3744953001021144094
321
+ hash: -2382962917329619082
315
322
  required_rubygems_version: !ruby/object:Gem::Requirement
316
323
  none: false
317
324
  requirements:
@@ -320,7 +327,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
320
327
  version: '0'
321
328
  segments:
322
329
  - 0
323
- hash: -3744953001021144094
330
+ hash: -2382962917329619082
324
331
  requirements: []
325
332
  rubyforge_project: savon
326
333
  rubygems_version: 1.8.24
data/.rspec DELETED
@@ -1 +0,0 @@
1
- --colour
@@ -1,494 +0,0 @@
1
- {
2
- "auto_complete":
3
- {
4
- "selected_items":
5
- [
6
- [
7
- "namespace",
8
- "namespace_identifier"
9
- ],
10
- [
11
- "http",
12
- "http_request"
13
- ],
14
- [
15
- "us",
16
- "used_namespaces"
17
- ],
18
- [
19
- "exp",
20
- "expected_header"
21
- ],
22
- [
23
- "end",
24
- "endpoint"
25
- ],
26
- [
27
- "new",
28
- "new_client"
29
- ]
30
- ]
31
- },
32
- "buffers":
33
- [
34
- ],
35
- "build_system": "",
36
- "command_palette":
37
- {
38
- "height": 167.0,
39
- "selected_items":
40
- [
41
- [
42
- "insp",
43
- "Package Control: Install Package"
44
- ],
45
- [
46
- "save",
47
- "Project: Save As"
48
- ],
49
- [
50
- "remp",
51
- "Package Control: Remove Package"
52
- ],
53
- [
54
- "themr",
55
- "Themr: Default"
56
- ],
57
- [
58
- "inspa",
59
- "Package Control: Install Package"
60
- ],
61
- [
62
- "rem",
63
- "Package Control: Remove Package"
64
- ],
65
- [
66
- "inspack",
67
- "Package Control: Install Package"
68
- ],
69
- [
70
- "rpack",
71
- "Package Control: Remove Package"
72
- ],
73
- [
74
- "rempa",
75
- "Package Control: Remove Package"
76
- ],
77
- [
78
- "pip",
79
- "Package Control: Install Package"
80
- ],
81
- [
82
- "soda",
83
- "Preferences: Package Control Settings – Default"
84
- ],
85
- [
86
- "disco",
87
- "Package Control: Discover Packages"
88
- ],
89
- [
90
- ":w",
91
- ":w - Save"
92
- ]
93
- ],
94
- "width": 593.0
95
- },
96
- "console":
97
- {
98
- "height": 139.0
99
- },
100
- "distraction_free":
101
- {
102
- "menu_visible": true,
103
- "show_minimap": false,
104
- "show_open_files": false,
105
- "show_tabs": false,
106
- "side_bar_visible": false,
107
- "status_bar_visible": false
108
- },
109
- "file_history":
110
- [
111
- "/Users/rubiii/Dropbox/github/savonrb/savon/lib/savon/message.rb",
112
- "/Users/rubiii/Dropbox/github/savonrb/savon/lib/savon/builder.rb",
113
- "/Users/rubiii/Dropbox/github/savonrb/savon/lib/savon/qualified_message.rb",
114
- "/Users/rubiii/Dropbox/github/savonrb/savon/spec/savon/qualified_message_spec.rb",
115
- "/Users/rubiii/Downloads/magento.xml",
116
- "/Users/rubiii/Dropbox/wsdl/e-dialog.xml",
117
- "/Users/rubiii/Dropbox/github/savonrb/savon/lib/savon/operation.rb",
118
- "/Users/rubiii/Dropbox/github/savonrb/savon/spec/savon/operation_spec.rb",
119
- "/Users/rubiii/Dropbox/github/savonrb/savon/spec/savon/builder_spec.rb",
120
- "/Users/rubiii/Dropbox/github/savonrb/savon/lib/savon/client.rb",
121
- "/Users/rubiii/Dropbox/github/savonrb/savon/Gemfile",
122
- "/Users/rubiii/Dropbox/github/savonrb/savon/lib/savon/options.rb",
123
- "/Users/rubiii/Dropbox/github/savonrb/savon/spec/savon/client_spec.rb",
124
- "/Users/rubiii/Dropbox/github/savonrb/savon/spec/integration/zipcode_example_spec.rb",
125
- "/Users/rubiii/Dropbox/github/savonrb/savon/lib/savon/wsdl_shim.rb",
126
- "/Users/rubiii/Dropbox/github/savonrb/savon/spec/savon/options_spec.rb",
127
- "/Users/rubiii/Dropbox/github/savonrb/savon/spec/integration/email_example_spec.rb",
128
- "/Users/rubiii/Dropbox/github/savonrb/savon/lib/savon/request.rb",
129
- "/Users/rubiii/Dropbox/github/savonrb/savon/lib/savon/header.rb",
130
- "/Users/rubiii/Dropbox/github/savonrb/savon/savon.gemspec",
131
- "/Users/rubiii/Dropbox/github/savonrb/savon/spec/fixtures/wsdl/responsys.xml",
132
- "/Users/rubiii/Library/Application Support/Sublime Text 2/Packages/User/Preferences.sublime-settings",
133
- "/Users/rubiii/Dropbox/github/savonrb/savon/CHANGELOG.md",
134
- "/Users/rubiii/Library/Application Support/Sublime Text 2/Packages/User/Markdown.sublime-settings",
135
- "/Users/rubiii/Library/Application Support/Sublime Text 2/Packages/User/JSON.sublime-settings",
136
- "/Users/rubiii/Dropbox/github/savonrb/savon/spec/fixtures/wsdl/innsist.xml",
137
- "/Users/rubiii/Dropbox/github/savonrb/savon/spec/integration/innsist_example_spec.rb",
138
- "/Users/rubiii/Dropbox/github/savonrb/savon/lib/savon.rb",
139
- "/Users/rubiii/Dropbox/github/savonrb/savon/lib/savon/model.rb",
140
- "/Users/rubiii/Library/Application Support/Sublime Text 2/Packages/User/Default (OSX).sublime-keymap",
141
- "/Users/rubiii/Library/Application Support/Sublime Text 2/Packages/Default/Preferences.sublime-settings",
142
- "/Users/rubiii/Dropbox/github/savon/lib/savon/client.rb",
143
- "/Users/rubiii/Downloads/fix_remote_code_exec_vulnerability (2).patch",
144
- "/Users/rubiii/Dropbox/github/savon/lib/savon/request.rb",
145
- "/Users/rubiii/Dropbox/github/savon/.gitignore",
146
- "/Users/rubiii/Dropbox/github/savon/savon.gemspec",
147
- "/Users/rubiii/Dropbox/github/savon/Gemfile",
148
- "/Users/rubiii/Library/Application Support/Sublime Text 2/Packages/User/Distraction Free.sublime-settings",
149
- "/Users/rubiii/Library/Application Support/Sublime Text 2/Packages/Theme - Default/Widget.sublime-settings",
150
- "/Users/rubiii/Library/Application Support/Sublime Text 2/Packages/RubyTest/TestConsole.hidden-tmTheme",
151
- "/Users/rubiii/Dropbox/github/savon/spec/savon/client_spec.rb",
152
- "/Users/rubiii/Library/Application Support/Sublime Text 2/Packages/Package Control/Package Control.sublime-settings",
153
- "/Users/rubiii/Library/Application Support/Sublime Text 2/Packages/RubyTest/RubyTest.sublime-settings",
154
- "/Users/rubiii/Library/Application Support/Sublime Text 2/Packages/User/RubyTest.sublime-settings",
155
- "/Users/rubiii/Library/Application Support/Google/Chrome/Default/Preferences",
156
- "/Users/rubiii/Desktop/disqus.csv",
157
- "/Users/rubiii/Downloads/rubiii-2013-01-01T01-07-55.471924-links.csv",
158
- "/Users/rubiii/Desktop/hashtest.rb",
159
- "/Users/rubiii/Dropbox/wsdl/jirasoapservice-v2.xml",
160
- "/Users/rubiii/Library/Application Support/Sublime Text 2/Packages/User/Base File.sublime-settings",
161
- "/Users/rubiii/Library/Application Support/Sublime Text 2/Packages/Ruby/Ruby.sublime-build",
162
- "/Users/rubiii/Desktop/hash.rb",
163
- "/etc/passwd",
164
- "/Users/rubiii/Dropbox/github/puma/test/test_minissl.rb",
165
- "/Users/rubiii/Dropbox/github/puma/lib/puma/minissl.rb",
166
- "/Users/rubiii/Dropbox/github/puma/test/test_puma_server.rb",
167
- "/Users/rubiii/Dropbox/github/puma/ext/puma_http11/mini_ssl.c",
168
- "/Users/rubiii/Dropbox/github/lysbon/config/locales/it.yml",
169
- "/Users/rubiii/Desktop/rspec-vim.app/Contents/Info.plist",
170
- "/Users/rubiii/Dropbox/github/puma/puma.gemspec",
171
- "/Users/rubiii/Dropbox/github/puma/lib/puma/server.rb",
172
- "/Users/rubiii/Desktop/PVWATTS.xml",
173
- "/Users/rubiii/Downloads/karotzusb (2)/network.conf",
174
- "/Users/rubiii/Desktop/descriptor.xml",
175
- "/Users/rubiii/Downloads/karotzusb (1)/network.conf",
176
- "/Users/rubiii/Downloads/karotzusb (1)/uuid.conf",
177
- "/Users/rubiii/Desktop/gemstats",
178
- "/Users/rubiii/Desktop/test.rb",
179
- "/Users/rubiii/Library/Application Support/KeyRemap4MacBook/private.xml",
180
- "/Users/rubiii/Dropbox/documents/keyremap.xml",
181
- "/Users/rubiii/Desktop/Mocha_files/Array.js",
182
- "/Users/rubiii/Desktop/Mocha_files/chai.js",
183
- "/Users/rubiii/Desktop/Mocha.html",
184
- "/Users/rubiii/Desktop/ci.md",
185
- "/Users/rubiii/Desktop/thingstobuild",
186
- "/Users/rubiii/Dropbox/Mercury/angebote/fragen.md",
187
- "/Users/rubiii/Dropbox/Mercury/angebote/UIM Formatted",
188
- "/Users/rubiii/Desktop/Tomorrow Focus Formatted.txt",
189
- "/Users/rubiii/Dropbox/Mercury/angebote/Interactive Angebot Formatted.txt",
190
- "/Users/rubiii/Downloads/layout35/reset-fonts-grids.css",
191
- "/Users/rubiii/Downloads/layout35/base.css",
192
- "/Users/rubiii/Desktop/mercury-fragen",
193
- "/Users/rubiii/Downloads/layout35/index.html",
194
- "/Users/rubiii/Dropbox/Mercury/fragen zum interface prototype",
195
- "/Users/rubiii/Desktop/bla.html"
196
- ],
197
- "find":
198
- {
199
- "height": 35.0
200
- },
201
- "find_in_files":
202
- {
203
- "height": 0.0,
204
- "where_history":
205
- [
206
- ""
207
- ]
208
- },
209
- "find_state":
210
- {
211
- "case_sensitive": false,
212
- "find_history":
213
- [
214
- "cookies",
215
- "wsdl_shim",
216
- "Savon::WSDLShim",
217
- "WSDLShim",
218
- "document?",
219
- "info",
220
- "namespace_identifier",
221
- "example",
222
- "type_namespaces",
223
- "Wasabi::Document",
224
- "type",
225
- "listfoldersrequest",
226
- "Header",
227
- "soap:header",
228
- "header",
229
- "translated_op",
230
- "Gyoku",
231
- "header",
232
- "message_tag",
233
- "InitializationError",
234
- "import",
235
- "highligh",
236
- "overla",
237
- "Dark",
238
- "lig",
239
- "true",
240
- "import",
241
- "request",
242
- "signature",
243
- "soap",
244
- "SSL_want_read",
245
- "module",
246
- "price:",
247
- "0",
248
- "2700",
249
- "\"format\"",
250
- "\"placement\"",
251
- "\"medium\":",
252
- " {\"publisher\"",
253
- "type:",
254
- "key:",
255
- "key",
256
- "label"
257
- ],
258
- "highlight": true,
259
- "in_selection": false,
260
- "preserve_case": false,
261
- "regex": false,
262
- "replace_history":
263
- [
264
- "Wasabi::InterpreterShim"
265
- ],
266
- "reverse": false,
267
- "show_context": true,
268
- "use_buffer2": true,
269
- "whole_word": false,
270
- "wrap": true
271
- },
272
- "groups":
273
- [
274
- {
275
- "sheets":
276
- [
277
- ]
278
- },
279
- {
280
- "sheets":
281
- [
282
- ]
283
- }
284
- ],
285
- "incremental_find":
286
- {
287
- "height": 34.0
288
- },
289
- "input":
290
- {
291
- "height": 0.0
292
- },
293
- "layout":
294
- {
295
- "cells":
296
- [
297
- [
298
- 0,
299
- 0,
300
- 1,
301
- 1
302
- ],
303
- [
304
- 1,
305
- 0,
306
- 2,
307
- 1
308
- ]
309
- ],
310
- "cols":
311
- [
312
- 0.0,
313
- 0.5,
314
- 1.0
315
- ],
316
- "rows":
317
- [
318
- 0.0,
319
- 1.0
320
- ]
321
- },
322
- "menu_visible": true,
323
- "output.exec":
324
- {
325
- "height": 583.0
326
- },
327
- "replace":
328
- {
329
- "height": 64.0
330
- },
331
- "save_all_on_build": true,
332
- "select_file":
333
- {
334
- "height": 0.0,
335
- "selected_items":
336
- [
337
- [
338
- "clisp",
339
- "spec/savon/client_spec.rb"
340
- ],
341
- [
342
- "clis",
343
- "spec/savon/client_spec.rb"
344
- ],
345
- [
346
- "zip",
347
- "spec/integration/zipcode_example_spec.rb"
348
- ],
349
- [
350
- "oper",
351
- "lib/savon/operation.rb"
352
- ],
353
- [
354
- "optisp",
355
- "spec/savon/options_spec.rb"
356
- ],
357
- [
358
- "emai",
359
- "spec/integration/email_example_spec.rb"
360
- ],
361
- [
362
- "zi",
363
- "spec/integration/zipcode_example_spec.rb"
364
- ],
365
- [
366
- "optsp",
367
- "spec/savon/options_spec.rb"
368
- ],
369
- [
370
- "ops",
371
- "spec/savon/operation_spec.rb"
372
- ],
373
- [
374
- "builsp",
375
- "spec/savon/builder_spec.rb"
376
- ],
377
- [
378
- "buisp",
379
- "spec/savon/builder_spec.rb"
380
- ],
381
- [
382
- "qum",
383
- "lib/savon/qualified_message.rb"
384
- ],
385
- [
386
- "responsys",
387
- "spec/fixtures/wsdl/responsys.xml"
388
- ],
389
- [
390
- "mess",
391
- "lib/savon/message.rb"
392
- ],
393
- [
394
- "buil",
395
- "lib/savon/builder.rb"
396
- ],
397
- [
398
- "head",
399
- "lib/savon/header.rb"
400
- ],
401
- [
402
- "opt",
403
- "lib/savon/options.rb"
404
- ],
405
- [
406
- "chang",
407
- "CHANGELOG.md"
408
- ],
409
- [
410
- "bui",
411
- "lib/savon/builder.rb"
412
- ],
413
- [
414
- "clie",
415
- "lib/savon/client.rb"
416
- ],
417
- [
418
- "inn",
419
- "spec/fixtures/wsdl/innsist.xml"
420
- ],
421
- [
422
- "cli",
423
- "lib/savon/client.rb"
424
- ],
425
- [
426
- "ver",
427
- "lib/nori/version.rb"
428
- ],
429
- [
430
- "chan",
431
- "CHANGELOG.md"
432
- ],
433
- [
434
- "cl",
435
- "lib/savon/client.rb"
436
- ],
437
- [
438
- "clsp",
439
- "spec/savon/client_spec.rb"
440
- ],
441
- [
442
- "gemf",
443
- "Gemfile"
444
- ],
445
- [
446
- "gems",
447
- "savon.gemspec"
448
- ],
449
- [
450
- "",
451
- ".gitignore"
452
- ],
453
- [
454
- "req",
455
- "lib/savon/request.rb"
456
- ]
457
- ],
458
- "width": 0.0
459
- },
460
- "select_project":
461
- {
462
- "height": 500.0,
463
- "selected_items":
464
- [
465
- [
466
- "w",
467
- "/Users/rubiii/Dropbox/github/savonrb/wasabi/wasabi.sublime-project"
468
- ],
469
- [
470
- "m",
471
- "/Users/rubiii/Dropbox/github/mercury/mercury.sublime-project"
472
- ],
473
- [
474
- "mer",
475
- "/Users/rubiii/Dropbox/github/mercury/mercury.sublime-project"
476
- ],
477
- [
478
- "was",
479
- "/Users/rubiii/Dropbox/github/savonrb/wasabi/wasabi.sublime-project"
480
- ],
481
- [
482
- "",
483
- "/Users/rubiii/Dropbox/github/savonrb/wasabi.sublime-project"
484
- ]
485
- ],
486
- "width": 380.0
487
- },
488
- "show_minimap": false,
489
- "show_open_files": false,
490
- "show_tabs": true,
491
- "side_bar_visible": false,
492
- "side_bar_width": 236.0,
493
- "status_bar_visible": true
494
- }