soap4r-ruby1.9 1.0.0 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -33,7 +33,7 @@ class ClientSkeltonCreator
33
33
  result = ""
34
34
  if @modulepath
35
35
  result << "\n"
36
- result << @modulepath.collect { |ele| "module #{ele}" }.join("; ")
36
+ result << @modulepath.each_line.collect { |ele| "module #{ele}" }.join("; ")
37
37
  result << "\n\n"
38
38
  end
39
39
  services.ports.each do |port|
@@ -42,7 +42,7 @@ class ClientSkeltonCreator
42
42
  end
43
43
  if @modulepath
44
44
  result << "\n\n"
45
- result << @modulepath.collect { |ele| "end" }.join("; ")
45
+ result << @modulepath.each_line.collect { |ele| "end" }.join("; ")
46
46
  result << "\n"
47
47
  end
48
48
  result
@@ -33,7 +33,7 @@ class DriverCreator
33
33
  def dump(porttype = nil)
34
34
  result = "require 'soap/rpc/driver'\n\n"
35
35
  if @modulepath
36
- @modulepath.each do |name|
36
+ @modulepath.each_line do |name|
37
37
  result << "module #{name}\n"
38
38
  end
39
39
  result << "\n"
@@ -48,7 +48,7 @@ class DriverCreator
48
48
  end
49
49
  if @modulepath
50
50
  result << "\n"
51
- @modulepath.each do |name|
51
+ @modulepath.each_line do |name|
52
52
  result << "end\n"
53
53
  end
54
54
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: soap4r-ruby1.9
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 1.0.0
5
+ version: 2.0.0
6
6
  platform: ruby
7
7
  authors:
8
8
  - kpoorman
@@ -15,6 +15,7 @@ default_executable:
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: shoulda
18
+ prerelease: false
18
19
  requirement: &id001 !ruby/object:Gem::Requirement
19
20
  none: false
20
21
  requirements:
@@ -22,10 +23,10 @@ dependencies:
22
23
  - !ruby/object:Gem::Version
23
24
  version: "0"
24
25
  type: :development
25
- prerelease: false
26
26
  version_requirements: *id001
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: bundler
29
+ prerelease: false
29
30
  requirement: &id002 !ruby/object:Gem::Requirement
30
31
  none: false
31
32
  requirements:
@@ -33,10 +34,10 @@ dependencies:
33
34
  - !ruby/object:Gem::Version
34
35
  version: 1.0.0
35
36
  type: :development
36
- prerelease: false
37
37
  version_requirements: *id002
38
38
  - !ruby/object:Gem::Dependency
39
39
  name: jeweler
40
+ prerelease: false
40
41
  requirement: &id003 !ruby/object:Gem::Requirement
41
42
  none: false
42
43
  requirements:
@@ -44,10 +45,10 @@ dependencies:
44
45
  - !ruby/object:Gem::Version
45
46
  version: 1.5.2
46
47
  type: :development
47
- prerelease: false
48
48
  version_requirements: *id003
49
49
  - !ruby/object:Gem::Dependency
50
50
  name: rcov
51
+ prerelease: false
51
52
  requirement: &id004 !ruby/object:Gem::Requirement
52
53
  none: false
53
54
  requirements:
@@ -55,7 +56,6 @@ dependencies:
55
56
  - !ruby/object:Gem::Version
56
57
  version: "0"
57
58
  type: :development
58
- prerelease: false
59
59
  version_requirements: *id004
60
60
  description: Ruby 1.9.2 compatible soap4r library
61
61
  email: kjp@brightleafsoftware.com
@@ -432,7 +432,6 @@ files:
432
432
  - sample/soapheader/soapext_basicauth/mms_MizGISDriver.rb
433
433
  - sample/soapheader/soapext_basicauth/mms_MizGISMappingRegistry.rb
434
434
  - setup.rb
435
- - soap4r-ruby1.9.gemspec
436
435
  - test/16runner.rb
437
436
  - test/interopR2/README.txt
438
437
  - test/interopR2/SOAPBuildersInterop_R2.wsdl
@@ -727,9 +726,6 @@ required_ruby_version: !ruby/object:Gem::Requirement
727
726
  requirements:
728
727
  - - ">="
729
728
  - !ruby/object:Gem::Version
730
- hash: -513904689055915895
731
- segments:
732
- - 0
733
729
  version: "0"
734
730
  required_rubygems_version: !ruby/object:Gem::Requirement
735
731
  none: false
@@ -1,907 +0,0 @@
1
- # Generated by jeweler
2
- # DO NOT EDIT THIS FILE DIRECTLY
3
- # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
- # -*- encoding: utf-8 -*-
5
-
6
- Gem::Specification.new do |s|
7
- s.name = %q{soap4r-ruby1.9}
8
- s.version = "1.0.0"
9
-
10
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
- s.authors = ["kpoorman"]
12
- s.date = %q{2011-03-31}
13
- s.description = %q{Ruby 1.9.2 compatible soap4r library}
14
- s.email = %q{kjp@brightleafsoftware.com}
15
- s.executables = ["wsdl2ruby.rb", "xsd2ruby.rb"]
16
- s.extra_rdoc_files = [
17
- "README.rdoc"
18
- ]
19
- s.files = [
20
- "COPYING",
21
- "GPL",
22
- "Gemfile",
23
- "Gemfile.lock",
24
- "README.rdoc",
25
- "RELEASE_en.html",
26
- "RUBYS",
27
- "Rakefile",
28
- "VERSION",
29
- "bin/wsdl2ruby.rb",
30
- "bin/xsd2ruby.rb",
31
- "lib/soap/attachment.rb",
32
- "lib/soap/attrproxy.rb",
33
- "lib/soap/baseData.rb",
34
- "lib/soap/element.rb",
35
- "lib/soap/encodingstyle/aspDotNetHandler.rb",
36
- "lib/soap/encodingstyle/handler.rb",
37
- "lib/soap/encodingstyle/literalHandler.rb",
38
- "lib/soap/encodingstyle/soapHandler.rb",
39
- "lib/soap/filter.rb",
40
- "lib/soap/filter/filterchain.rb",
41
- "lib/soap/filter/handler.rb",
42
- "lib/soap/filter/streamhandler.rb",
43
- "lib/soap/generator.rb",
44
- "lib/soap/header/handler.rb",
45
- "lib/soap/header/handlerset.rb",
46
- "lib/soap/header/mappinghandler.rb",
47
- "lib/soap/header/simplehandler.rb",
48
- "lib/soap/httpconfigloader.rb",
49
- "lib/soap/mapping.rb",
50
- "lib/soap/mapping/encodedregistry.rb",
51
- "lib/soap/mapping/factory.rb",
52
- "lib/soap/mapping/literalregistry.rb",
53
- "lib/soap/mapping/mapping.rb",
54
- "lib/soap/mapping/registry.rb",
55
- "lib/soap/mapping/rubytypeFactory.rb",
56
- "lib/soap/mapping/schemadefinition.rb",
57
- "lib/soap/mapping/typeMap.rb",
58
- "lib/soap/mapping/wsdlencodedregistry.rb",
59
- "lib/soap/mapping/wsdlliteralregistry.rb",
60
- "lib/soap/marshal.rb",
61
- "lib/soap/mimemessage.rb",
62
- "lib/soap/nestedexception.rb",
63
- "lib/soap/netHttpClient.rb",
64
- "lib/soap/ns.rb",
65
- "lib/soap/parser.rb",
66
- "lib/soap/processor.rb",
67
- "lib/soap/property.rb",
68
- "lib/soap/proxy.rb",
69
- "lib/soap/rpc/cgistub.rb",
70
- "lib/soap/rpc/driver.rb",
71
- "lib/soap/rpc/element.rb",
72
- "lib/soap/rpc/element.rb.orig",
73
- "lib/soap/rpc/httpserver.rb",
74
- "lib/soap/rpc/methodDef.rb",
75
- "lib/soap/rpc/proxy.rb",
76
- "lib/soap/rpc/router.rb",
77
- "lib/soap/rpc/rpc.rb",
78
- "lib/soap/rpc/soaplet.rb",
79
- "lib/soap/rpc/standaloneServer.rb",
80
- "lib/soap/ruby18ext.rb",
81
- "lib/soap/soap.rb",
82
- "lib/soap/streamHandler.rb",
83
- "lib/soap/wsdlDriver.rb",
84
- "lib/wsdl/binding.rb",
85
- "lib/wsdl/data.rb",
86
- "lib/wsdl/definitions.rb",
87
- "lib/wsdl/documentation.rb",
88
- "lib/wsdl/import.rb",
89
- "lib/wsdl/importer.rb",
90
- "lib/wsdl/info.rb",
91
- "lib/wsdl/message.rb",
92
- "lib/wsdl/operation.rb",
93
- "lib/wsdl/operationBinding.rb",
94
- "lib/wsdl/param.rb",
95
- "lib/wsdl/parser.rb",
96
- "lib/wsdl/part.rb",
97
- "lib/wsdl/port.rb",
98
- "lib/wsdl/portType.rb",
99
- "lib/wsdl/service.rb",
100
- "lib/wsdl/soap/address.rb",
101
- "lib/wsdl/soap/binding.rb",
102
- "lib/wsdl/soap/body.rb",
103
- "lib/wsdl/soap/cgiStubCreator.rb",
104
- "lib/wsdl/soap/classDefCreator.rb",
105
- "lib/wsdl/soap/classDefCreatorSupport.rb",
106
- "lib/wsdl/soap/classNameCreator.rb",
107
- "lib/wsdl/soap/clientSkeltonCreator.rb",
108
- "lib/wsdl/soap/complexType.rb",
109
- "lib/wsdl/soap/data.rb",
110
- "lib/wsdl/soap/definitions.rb",
111
- "lib/wsdl/soap/driverCreator.rb",
112
- "lib/wsdl/soap/element.rb",
113
- "lib/wsdl/soap/encodedMappingRegistryCreator.rb",
114
- "lib/wsdl/soap/fault.rb",
115
- "lib/wsdl/soap/header.rb",
116
- "lib/wsdl/soap/headerfault.rb",
117
- "lib/wsdl/soap/literalMappingRegistryCreator.rb",
118
- "lib/wsdl/soap/mappingRegistryCreator.rb",
119
- "lib/wsdl/soap/mappingRegistryCreatorSupport.rb",
120
- "lib/wsdl/soap/methodDefCreator.rb",
121
- "lib/wsdl/soap/operation.rb",
122
- "lib/wsdl/soap/servantSkeltonCreator.rb",
123
- "lib/wsdl/soap/servletStubCreator.rb",
124
- "lib/wsdl/soap/standaloneServerStubCreator.rb",
125
- "lib/wsdl/soap/wsdl2ruby.rb",
126
- "lib/wsdl/types.rb",
127
- "lib/wsdl/wsdl.rb",
128
- "lib/wsdl/xmlSchema/all.rb",
129
- "lib/wsdl/xmlSchema/annotation.rb",
130
- "lib/wsdl/xmlSchema/any.rb",
131
- "lib/wsdl/xmlSchema/anyAttribute.rb",
132
- "lib/wsdl/xmlSchema/attribute.rb",
133
- "lib/wsdl/xmlSchema/attributeGroup.rb",
134
- "lib/wsdl/xmlSchema/choice.rb",
135
- "lib/wsdl/xmlSchema/complexContent.rb",
136
- "lib/wsdl/xmlSchema/complexExtension.rb",
137
- "lib/wsdl/xmlSchema/complexRestriction.rb",
138
- "lib/wsdl/xmlSchema/complexType.rb",
139
- "lib/wsdl/xmlSchema/content.rb",
140
- "lib/wsdl/xmlSchema/data.rb",
141
- "lib/wsdl/xmlSchema/element.rb",
142
- "lib/wsdl/xmlSchema/enumeration.rb",
143
- "lib/wsdl/xmlSchema/fractiondigits.rb",
144
- "lib/wsdl/xmlSchema/group.rb",
145
- "lib/wsdl/xmlSchema/import.rb",
146
- "lib/wsdl/xmlSchema/importHandler.rb",
147
- "lib/wsdl/xmlSchema/importer.rb",
148
- "lib/wsdl/xmlSchema/include.rb",
149
- "lib/wsdl/xmlSchema/length.rb",
150
- "lib/wsdl/xmlSchema/list.rb",
151
- "lib/wsdl/xmlSchema/maxexclusive.rb",
152
- "lib/wsdl/xmlSchema/maxinclusive.rb",
153
- "lib/wsdl/xmlSchema/maxlength.rb",
154
- "lib/wsdl/xmlSchema/minexclusive.rb",
155
- "lib/wsdl/xmlSchema/mininclusive.rb",
156
- "lib/wsdl/xmlSchema/minlength.rb",
157
- "lib/wsdl/xmlSchema/parser.rb",
158
- "lib/wsdl/xmlSchema/pattern.rb",
159
- "lib/wsdl/xmlSchema/ref.rb",
160
- "lib/wsdl/xmlSchema/schema.rb",
161
- "lib/wsdl/xmlSchema/sequence.rb",
162
- "lib/wsdl/xmlSchema/simpleContent.rb",
163
- "lib/wsdl/xmlSchema/simpleExtension.rb",
164
- "lib/wsdl/xmlSchema/simpleRestriction.rb",
165
- "lib/wsdl/xmlSchema/simpleType.rb",
166
- "lib/wsdl/xmlSchema/totaldigits.rb",
167
- "lib/wsdl/xmlSchema/union.rb",
168
- "lib/wsdl/xmlSchema/unique.rb",
169
- "lib/wsdl/xmlSchema/whitespace.rb",
170
- "lib/wsdl/xmlSchema/xsd2ruby.rb",
171
- "lib/xsd/charset.rb",
172
- "lib/xsd/codegen.rb",
173
- "lib/xsd/codegen/classdef.rb",
174
- "lib/xsd/codegen/commentdef.rb",
175
- "lib/xsd/codegen/gensupport.rb",
176
- "lib/xsd/codegen/methoddef.rb",
177
- "lib/xsd/codegen/moduledef.rb",
178
- "lib/xsd/datatypes.rb",
179
- "lib/xsd/datatypes1999.rb",
180
- "lib/xsd/iconvcharset.rb",
181
- "lib/xsd/mapping.rb",
182
- "lib/xsd/namedelements.rb",
183
- "lib/xsd/ns.rb",
184
- "lib/xsd/qname.rb",
185
- "lib/xsd/xmlparser.rb",
186
- "lib/xsd/xmlparser.rb.orig",
187
- "lib/xsd/xmlparser/libxmlparser.rb",
188
- "lib/xsd/xmlparser/parser.rb",
189
- "lib/xsd/xmlparser/rexmlparser.rb",
190
- "lib/xsd/xmlparser/xmlparser.rb",
191
- "lib/xsd/xmlparser/xmlscanner.rb",
192
- "rubyStyle.css",
193
- "sample/attachment/complexmime/EdmService.rb",
194
- "sample/attachment/complexmime/README.txt",
195
- "sample/attachment/complexmime/client.rb",
196
- "sample/attachment/complexmime/drift.cdf",
197
- "sample/attachment/complexmime/plaatje.png",
198
- "sample/attachment/complexmime/server.rb",
199
- "sample/attachment/swa/client.rb",
200
- "sample/attachment/swa/server.rb",
201
- "sample/basic/apacheClient.rb",
202
- "sample/basic/babelfish.rb",
203
- "sample/basic/calc/calc.rb",
204
- "sample/basic/calc/calc2.rb",
205
- "sample/basic/calc/client.rb",
206
- "sample/basic/calc/client2.rb",
207
- "sample/basic/calc/httpd.rb",
208
- "sample/basic/calc/samplehttpd.conf",
209
- "sample/basic/calc/server.cgi",
210
- "sample/basic/calc/server.fcgi",
211
- "sample/basic/calc/server.rb",
212
- "sample/basic/calc/server2.rb",
213
- "sample/basic/exchange/client.rb",
214
- "sample/basic/exchange/exchange.rb",
215
- "sample/basic/exchange/httpd.rb",
216
- "sample/basic/exchange/samplehttpd.conf",
217
- "sample/basic/exchange/server.cgi",
218
- "sample/basic/exchange/server.rb",
219
- "sample/basic/flickr.rb",
220
- "sample/basic/helloworld/client.rb",
221
- "sample/basic/helloworld/server.rb",
222
- "sample/basic/sampleStruct/client.rb",
223
- "sample/basic/sampleStruct/httpd.rb",
224
- "sample/basic/sampleStruct/iSampleStruct.rb",
225
- "sample/basic/sampleStruct/sampleStruct.rb",
226
- "sample/basic/sampleStruct/samplehttpd.conf",
227
- "sample/basic/sampleStruct/server.cgi",
228
- "sample/basic/sampleStruct/server.rb",
229
- "sample/basic/whois.rb",
230
- "sample/basic/wsdl_helloworld/README",
231
- "sample/basic/wsdl_helloworld/client/default.rb",
232
- "sample/basic/wsdl_helloworld/client/defaultDriver.rb",
233
- "sample/basic/wsdl_helloworld/client/hws.wsdl",
234
- "sample/basic/wsdl_helloworld/client/hwsClient.rb",
235
- "sample/basic/wsdl_helloworld/server/hw_s.rb",
236
- "sample/basic/wsdl_helloworld/server/hws.wsdl",
237
- "sample/basic/yahooNewsSearch.rb",
238
- "sample/howto/as_xml/client.rb",
239
- "sample/howto/as_xml/server.rb",
240
- "sample/howto/base64/client.rb",
241
- "sample/howto/base64/server.rb",
242
- "sample/howto/custom_ns/client.rb",
243
- "sample/howto/custom_ns/server.rb",
244
- "sample/howto/documentliteral/README.txt",
245
- "sample/howto/documentliteral/client.rb",
246
- "sample/howto/documentliteral/echo.wsdl",
247
- "sample/howto/documentliteral/servant.rb",
248
- "sample/howto/filter/client.rb",
249
- "sample/howto/filter/server.rb",
250
- "sample/howto/scopesample/client.rb",
251
- "sample/howto/scopesample/httpd.rb",
252
- "sample/howto/scopesample/samplehttpd.conf",
253
- "sample/howto/scopesample/servant.rb",
254
- "sample/howto/scopesample/server.cgi",
255
- "sample/howto/scopesample/server.rb",
256
- "sample/howto/styleuse/client.rb",
257
- "sample/howto/styleuse/server.rb",
258
- "sample/howto/wsdl_fault/README.txt",
259
- "sample/howto/wsdl_fault/fault/AddClient.rb",
260
- "sample/howto/wsdl_fault/fault/AddServer.rb",
261
- "sample/howto/wsdl_fault/fault/AddServiceImpl.rb",
262
- "sample/howto/wsdl_fault/fault/fault.wsdl",
263
- "sample/howto/wsdl_fault/multifault/AddClient.rb",
264
- "sample/howto/wsdl_fault/multifault/AddServer.rb",
265
- "sample/howto/wsdl_fault/multifault/AddServiceImpl.rb",
266
- "sample/howto/wsdl_fault/multifault/fault.wsdl",
267
- "sample/howto/wsdl_hash/client.rb",
268
- "sample/howto/wsdl_hash/hash.wsdl",
269
- "sample/howto/wsdl_hash/server.rb",
270
- "sample/marshal/customfactory.rb",
271
- "sample/marshal/customregistry.rb",
272
- "sample/marshal/digraph.rb",
273
- "sample/marshal/enum/README.txt",
274
- "sample/marshal/enum/enum.xsd",
275
- "sample/marshal/enum/enumsample.rb",
276
- "sample/marshal/enum/enumsample_mapper.rb",
277
- "sample/marshal/enum/enumsample_mapping_registry.rb",
278
- "sample/marshal/enum/marshal.rb",
279
- "sample/payload/basicauth/client.rb",
280
- "sample/payload/basicauth/htpasswd",
281
- "sample/payload/basicauth/server.rb",
282
- "sample/payload/cookies/calc.rb",
283
- "sample/payload/cookies/client.rb",
284
- "sample/payload/cookies/filterclient.rb",
285
- "sample/payload/cookies/server.rb",
286
- "sample/payload/gzipped/client.rb",
287
- "sample/payload/gzipped/server.rb",
288
- "sample/payload/ssl/files/README",
289
- "sample/payload/ssl/files/ca.cert",
290
- "sample/payload/ssl/files/client.cert",
291
- "sample/payload/ssl/files/client.key",
292
- "sample/payload/ssl/files/server.cert",
293
- "sample/payload/ssl/files/server.key",
294
- "sample/payload/ssl/files/sslclient.properties",
295
- "sample/payload/ssl/files/sslclient_require_noserverauth.properties",
296
- "sample/payload/ssl/files/sslclient_with_clientauth.properties",
297
- "sample/payload/ssl/files/subca.cert",
298
- "sample/payload/ssl/sslclient.rb",
299
- "sample/payload/ssl/sslclient_require_noserverauth.rb",
300
- "sample/payload/ssl/sslclient_with_clientauth.rb",
301
- "sample/payload/ssl/sslserver.rb",
302
- "sample/payload/ssl/sslserver_noauth.rb",
303
- "sample/payload/ssl/sslserver_require_clientauth.rb",
304
- "sample/showcase/soap/hippo5tq/hippo5tq.rb",
305
- "sample/showcase/soap/hippo5tq/hippo5tq2.rb",
306
- "sample/showcase/soap/hippo5tq/hippoClient.rb",
307
- "sample/showcase/soap/icd/IICD.rb",
308
- "sample/showcase/soap/icd/icd.rb",
309
- "sample/showcase/soap/mssoap/README.txt",
310
- "sample/showcase/soap/mssoap/client.vba",
311
- "sample/showcase/soap/mssoap/stockQuoteService.cgi",
312
- "sample/showcase/soap/mssoap/stockQuoteService.rb",
313
- "sample/showcase/soap/mssoap/stockQuoteService.wsdl",
314
- "sample/showcase/soap/mssoap/stockQuoteServiceClient.rb",
315
- "sample/showcase/soap/mssoap/stockQuoteServiceClient.xls",
316
- "sample/showcase/soap/mssoap/stockQuoteServicePortTypeDriver.rb",
317
- "sample/showcase/soap/netDicV06/INetDicV06.rb",
318
- "sample/showcase/soap/netDicV06/netDicV06.rb",
319
- "sample/showcase/soap/raa/SOAP__Lite.pl",
320
- "sample/showcase/soap/raa/pocketSOAP.js",
321
- "sample/showcase/soap/raa2.4/raa.rb",
322
- "sample/showcase/soap/raa2.4/raa.wsdl",
323
- "sample/showcase/soap/raa2.4/raaDriver.rb",
324
- "sample/showcase/soap/raa2.4/raaServiceClient.rb",
325
- "sample/showcase/soap/raa2.4/sample.rb",
326
- "sample/showcase/soap/rwiki/rwikiClient.rb",
327
- "sample/showcase/soap/rwiki/rwikiServer.cgi",
328
- "sample/showcase/soap/soapbox/ContactsDataSet.xml",
329
- "sample/showcase/soap/soapbox/ExceptionDataSet.xml",
330
- "sample/showcase/soap/soapbox/MessageDataSet.xml",
331
- "sample/showcase/soap/soapbox/SoapBoxWebService.wsdl",
332
- "sample/showcase/soap/soapbox/SoapBoxWebServiceWithRawXML.wsdl",
333
- "sample/showcase/soap/soapbox/wsdlDriver.rb",
334
- "sample/showcase/wsdl/PayPalSvc/client.rb",
335
- "sample/showcase/wsdl/amazon/AmazonSearch.rb",
336
- "sample/showcase/wsdl/amazon/AmazonSearchDriver.rb",
337
- "sample/showcase/wsdl/amazon/sampleClient.rb",
338
- "sample/showcase/wsdl/amazon/wsdlDriver.rb",
339
- "sample/showcase/wsdl/amazonEC/client.rb",
340
- "sample/showcase/wsdl/eBaySvc/sampleclient.rb",
341
- "sample/showcase/wsdl/googleAdwords/CampaignService.wsdl",
342
- "sample/showcase/wsdl/googleAdwords/ca.pem",
343
- "sample/showcase/wsdl/googleAdwords/client.rb",
344
- "sample/showcase/wsdl/googleAdwords/soap/property",
345
- "sample/showcase/wsdl/googleSearch/GoogleSearch.rb",
346
- "sample/showcase/wsdl/googleSearch/GoogleSearchDriver.rb",
347
- "sample/showcase/wsdl/googleSearch/README",
348
- "sample/showcase/wsdl/googleSearch/httpd.rb",
349
- "sample/showcase/wsdl/googleSearch/sampleClient.rb",
350
- "sample/showcase/wsdl/googleSearch/samplehttpd.conf",
351
- "sample/showcase/wsdl/googleSearch/sjissearch.sh",
352
- "sample/showcase/wsdl/googleSearch/wsdlDriver.rb",
353
- "sample/showcase/wsdl/noaa/README.txt",
354
- "sample/showcase/wsdl/noaa/client.rb",
355
- "sample/showcase/wsdl/noaa/default.rb",
356
- "sample/showcase/wsdl/noaa/defaultDriver.rb",
357
- "sample/showcase/wsdl/noaa/defaultMappingRegistry.rb",
358
- "sample/showcase/wsdl/noaa/ndfdXMLClient.rb",
359
- "sample/showcase/wsdl/raa2.4/raa.rb",
360
- "sample/showcase/wsdl/raa2.4/raa.wsdl",
361
- "sample/showcase/wsdl/raa2.4/wsdlDriver.rb",
362
- "sample/showcase/wsdl/rnn/client.rb",
363
- "sample/showcase/wsdl/rnn/post.rb",
364
- "sample/showcase/wsdl/rnn/rnn-hash.wsdl",
365
- "sample/showcase/wsdl/rnn/rnn.wsdl",
366
- "sample/showcase/wsdl/rnn/submit.rb",
367
- "sample/showcase/wsdl/salesforce/SforceServiceClient.rb",
368
- "sample/showcase/wsdl/salesforce/ca.pem",
369
- "sample/showcase/wsdl/salesforce/client.rb",
370
- "sample/showcase/wsdl/salesforce/default.rb",
371
- "sample/showcase/wsdl/salesforce/defaultDriver.rb",
372
- "sample/showcase/wsdl/salesforce/soap/property",
373
- "sample/soapheader/authheader/authmgr.rb",
374
- "sample/soapheader/authheader/client.rb",
375
- "sample/soapheader/authheader/client2.rb",
376
- "sample/soapheader/authheader/server.rb",
377
- "sample/soapheader/authheader/server2.rb",
378
- "sample/soapheader/soapext_basicauth/client.rb",
379
- "sample/soapheader/soapext_basicauth/mms_MizGIS.rb",
380
- "sample/soapheader/soapext_basicauth/mms_MizGIS.wsdl",
381
- "sample/soapheader/soapext_basicauth/mms_MizGISClient.rb",
382
- "sample/soapheader/soapext_basicauth/mms_MizGISDriver.rb",
383
- "sample/soapheader/soapext_basicauth/mms_MizGISMappingRegistry.rb",
384
- "setup.rb",
385
- "soap4r-ruby1.9.gemspec",
386
- "test/16runner.rb",
387
- "test/interopR2/README.txt",
388
- "test/interopR2/SOAPBuildersInterop_R2.wsdl",
389
- "test/interopR2/SOAPBuildersInterop_R2GrB.wsdl",
390
- "test/interopR2/base.rb",
391
- "test/interopR2/client.NetRemoting.rb",
392
- "test/interopR2/client.rb",
393
- "test/interopR2/client4S4C.rb",
394
- "test/interopR2/client4S4C2.rb",
395
- "test/interopR2/clientASP.NET.rb",
396
- "test/interopR2/clientApacheAxis.rb",
397
- "test/interopR2/clientApacheSOAP.rb",
398
- "test/interopR2/clientBEAWebLogic.rb",
399
- "test/interopR2/clientBase.rb",
400
- "test/interopR2/clientCapeConnect.rb",
401
- "test/interopR2/clientDelphi.rb",
402
- "test/interopR2/clientEasySoap.rb",
403
- "test/interopR2/clientFrontier.rb",
404
- "test/interopR2/clientGLUE.rb",
405
- "test/interopR2/clientHP.rb",
406
- "test/interopR2/clientJAX-RPC.rb",
407
- "test/interopR2/clientJSOAP.rb",
408
- "test/interopR2/clientKafkaXSLT.rb",
409
- "test/interopR2/clientMSSOAPToolkit2.0.rb",
410
- "test/interopR2/clientMSSOAPToolkit3.0.rb",
411
- "test/interopR2/clientNuSOAP.rb",
412
- "test/interopR2/clientNuWave.rb",
413
- "test/interopR2/clientOpenLink.rb",
414
- "test/interopR2/clientOracle.rb",
415
- "test/interopR2/clientPEAR.rb",
416
- "test/interopR2/clientPhalanx.rb",
417
- "test/interopR2/clientSIMACE.rb",
418
- "test/interopR2/clientSOAP4R.rb",
419
- "test/interopR2/clientSOAP__Lite.rb",
420
- "test/interopR2/clientSQLData.rb",
421
- "test/interopR2/clientSilverStream.rb",
422
- "test/interopR2/clientSpray2001.rb",
423
- "test/interopR2/clientSun.rb",
424
- "test/interopR2/clientVWOpentalkSoap.rb",
425
- "test/interopR2/clientWASP.rb",
426
- "test/interopR2/clientWASPC.rb",
427
- "test/interopR2/clientWebMethods.rb",
428
- "test/interopR2/clientWhiteMesa.rb",
429
- "test/interopR2/clientWingfoot.rb",
430
- "test/interopR2/clientXMLBus.rb",
431
- "test/interopR2/clientXMLRPC-EPI.rb",
432
- "test/interopR2/clientXSOAP.rb",
433
- "test/interopR2/clientZSI.rb",
434
- "test/interopR2/clienteSOAP.rb",
435
- "test/interopR2/clientgSOAP.rb",
436
- "test/interopR2/clientkSOAP.rb",
437
- "test/interopR2/iSimonReg.rb",
438
- "test/interopR2/interopResultBase.rb",
439
- "test/interopR2/interopService.rb",
440
- "test/interopR2/rwikiInteropService.rb",
441
- "test/interopR2/server.cgi",
442
- "test/interopR2/server.rb",
443
- "test/interopR2/simonReg.rb",
444
- "test/interopR2/test.sh",
445
- "test/interopR4/client.rb",
446
- "test/results",
447
- "test/runner.rb",
448
- "test/sm11/classDef.rb",
449
- "test/sm11/client.rb",
450
- "test/sm11/driver.rb",
451
- "test/sm11/servant.rb",
452
- "test/sm11/server.rb",
453
- "test/soap/asp.net/hello.wsdl",
454
- "test/soap/asp.net/test_aspdotnet.rb",
455
- "test/soap/auth/htdigest",
456
- "test/soap/auth/htpasswd",
457
- "test/soap/auth/test_basic.rb",
458
- "test/soap/auth/test_digest.rb",
459
- "test/soap/calc/calc.rb",
460
- "test/soap/calc/calc2.rb",
461
- "test/soap/calc/server.cgi",
462
- "test/soap/calc/server.rb",
463
- "test/soap/calc/server2.rb",
464
- "test/soap/calc/test_calc.rb",
465
- "test/soap/calc/test_calc2.rb",
466
- "test/soap/calc/test_calc_cgi.rb",
467
- "test/soap/case/test_mapping.rb",
468
- "test/soap/fault/test_customfault.rb",
469
- "test/soap/fault/test_fault.rb",
470
- "test/soap/fault/test_soaparray.rb",
471
- "test/soap/filter/test_filter.rb",
472
- "test/soap/header/server.cgi",
473
- "test/soap/header/session.pstoredb",
474
- "test/soap/header/test_authheader.rb",
475
- "test/soap/header/test_authheader_cgi.rb",
476
- "test/soap/header/test_simplehandler.rb",
477
- "test/soap/helloworld/hw_s.rb",
478
- "test/soap/helloworld/test_helloworld.rb",
479
- "test/soap/htpasswd",
480
- "test/soap/literalArrayMapping/amazonEc.rb",
481
- "test/soap/literalArrayMapping/amazonEcDriver.rb",
482
- "test/soap/literalArrayMapping/amazonresponse.xml",
483
- "test/soap/literalArrayMapping/test_definedarray.rb",
484
- "test/soap/marshal/marshaltestlib.rb",
485
- "test/soap/marshal/test_digraph.rb",
486
- "test/soap/marshal/test_marshal.rb",
487
- "test/soap/marshal/test_struct.rb",
488
- "test/soap/ssl/README",
489
- "test/soap/ssl/ca.cert",
490
- "test/soap/ssl/client.cert",
491
- "test/soap/ssl/client.key",
492
- "test/soap/ssl/server.cert",
493
- "test/soap/ssl/server.key",
494
- "test/soap/ssl/sslsvr.rb",
495
- "test/soap/ssl/subca.cert",
496
- "test/soap/ssl/test_ssl.rb",
497
- "test/soap/struct/test_struct.rb",
498
- "test/soap/styleuse/client.rb",
499
- "test/soap/styleuse/server.rb",
500
- "test/soap/swa/test_file.rb",
501
- "test/soap/test_basetype.rb",
502
- "test/soap/test_cookie.rb",
503
- "test/soap/test_custom_ns.rb",
504
- "test/soap/test_custommap.rb",
505
- "test/soap/test_empty.rb",
506
- "test/soap/test_envelopenamespace.rb",
507
- "test/soap/test_extraattr.rb",
508
- "test/soap/test_generator.rb",
509
- "test/soap/test_httpconfigloader.rb",
510
- "test/soap/test_mapping.rb",
511
- "test/soap/test_nestedexception.rb",
512
- "test/soap/test_nil.rb",
513
- "test/soap/test_no_indent.rb",
514
- "test/soap/test_property.rb",
515
- "test/soap/test_response_as_xml.rb",
516
- "test/soap/test_soapelement.rb",
517
- "test/soap/test_streamhandler.rb",
518
- "test/soap/test_styleuse.rb",
519
- "test/soap/wsdlDriver/README.txt",
520
- "test/soap/wsdlDriver/calc.wsdl",
521
- "test/soap/wsdlDriver/document.wsdl",
522
- "test/soap/wsdlDriver/echo_version.rb",
523
- "test/soap/wsdlDriver/simpletype.wsdl",
524
- "test/soap/wsdlDriver/test_calc.rb",
525
- "test/soap/wsdlDriver/test_document.rb",
526
- "test/soap/wsdlDriver/test_simpletype.rb",
527
- "test/testutil.rb",
528
- "test/wsdl/abstract/abstract.wsdl",
529
- "test/wsdl/abstract/test_abstract.rb",
530
- "test/wsdl/anonymous/expectedClassDef.rb",
531
- "test/wsdl/anonymous/expectedDriver.rb",
532
- "test/wsdl/anonymous/expectedMappingRegistry.rb",
533
- "test/wsdl/anonymous/lp.wsdl",
534
- "test/wsdl/anonymous/test_anonymous.rb",
535
- "test/wsdl/any/any.wsdl",
536
- "test/wsdl/any/expectedDriver.rb",
537
- "test/wsdl/any/expectedEcho.rb",
538
- "test/wsdl/any/expectedMappingRegistry.rb",
539
- "test/wsdl/any/expectedService.rb",
540
- "test/wsdl/any/test_any.rb",
541
- "test/wsdl/axisArray/axisArray.wsdl",
542
- "test/wsdl/axisArray/test_axisarray.rb",
543
- "test/wsdl/choice/choice.wsdl",
544
- "test/wsdl/choice/test_choice.rb",
545
- "test/wsdl/complexcontent/complexContent.wsdl",
546
- "test/wsdl/complexcontent/test_echo.rb",
547
- "test/wsdl/datetime/DatetimeService.rb",
548
- "test/wsdl/datetime/datetime.rb",
549
- "test/wsdl/datetime/datetime.wsdl",
550
- "test/wsdl/datetime/datetimeServant.rb",
551
- "test/wsdl/datetime/test_datetime.rb",
552
- "test/wsdl/document/array/double.wsdl",
553
- "test/wsdl/document/array/test_array.rb",
554
- "test/wsdl/document/document.wsdl",
555
- "test/wsdl/document/number.wsdl",
556
- "test/wsdl/document/ping_nosoapaction.wsdl",
557
- "test/wsdl/document/test_nosoapaction.rb",
558
- "test/wsdl/document/test_number.rb",
559
- "test/wsdl/document/test_rpc.rb",
560
- "test/wsdl/emptycomplextype.wsdl",
561
- "test/wsdl/fault/fault.wsdl",
562
- "test/wsdl/fault/multifault.wsdl",
563
- "test/wsdl/fault/test_fault.rb",
564
- "test/wsdl/fault/test_multifault.rb",
565
- "test/wsdl/group/expectedClassdef.rb",
566
- "test/wsdl/group/expectedDriver.rb",
567
- "test/wsdl/group/expectedMappingRegistry.rb",
568
- "test/wsdl/group/group.wsdl",
569
- "test/wsdl/group/test_rpc.rb",
570
- "test/wsdl/list/list.wsdl",
571
- "test/wsdl/list/test_list.rb",
572
- "test/wsdl/map/map.wsdl",
573
- "test/wsdl/map/map.xml",
574
- "test/wsdl/map/test_map.rb",
575
- "test/wsdl/marshal/Person.rb",
576
- "test/wsdl/marshal/person.wsdl",
577
- "test/wsdl/marshal/person_org.rb",
578
- "test/wsdl/marshal/test_wsdlmarshal.rb",
579
- "test/wsdl/multiplefault.wsdl",
580
- "test/wsdl/oneway/oneway.wsdl",
581
- "test/wsdl/oneway/test_oneway.rb",
582
- "test/wsdl/overload/expectedClient.rb",
583
- "test/wsdl/overload/expectedDriver.rb",
584
- "test/wsdl/overload/expectedServant.rb",
585
- "test/wsdl/overload/overload.wsdl",
586
- "test/wsdl/overload/test_overload.rb",
587
- "test/wsdl/qualified/lp.wsdl",
588
- "test/wsdl/qualified/lp.xsd",
589
- "test/wsdl/qualified/np.wsdl",
590
- "test/wsdl/qualified/test_qualified.rb",
591
- "test/wsdl/qualified/test_unqualified.rb",
592
- "test/wsdl/raa/RAAService.rb",
593
- "test/wsdl/raa/README.txt",
594
- "test/wsdl/raa/expectedClassDef.rb",
595
- "test/wsdl/raa/expectedDriver.rb",
596
- "test/wsdl/raa/expectedMappingRegistry.rb",
597
- "test/wsdl/raa/raa.wsdl",
598
- "test/wsdl/raa/test_raa.rb",
599
- "test/wsdl/ref/expectedDriver.rb",
600
- "test/wsdl/ref/expectedProduct.rb",
601
- "test/wsdl/ref/product.wsdl",
602
- "test/wsdl/ref/test_ref.rb",
603
- "test/wsdl/rpc/rpc.wsdl",
604
- "test/wsdl/rpc/test-rpc-lit.wsdl",
605
- "test/wsdl/rpc/test_rpc.rb",
606
- "test/wsdl/rpc/test_rpc_lit.rb",
607
- "test/wsdl/simplecontent/simplecontent.wsdl",
608
- "test/wsdl/simplecontent/test_simplecontent.rb",
609
- "test/wsdl/simpletype/rpc/echo_version.rb",
610
- "test/wsdl/simpletype/rpc/echo_versionDriver.rb",
611
- "test/wsdl/simpletype/rpc/echo_versionMappingRegistry.rb",
612
- "test/wsdl/simpletype/rpc/echo_versionServant.rb",
613
- "test/wsdl/simpletype/rpc/echo_version_service.rb",
614
- "test/wsdl/simpletype/rpc/echo_version_serviceClient.rb",
615
- "test/wsdl/simpletype/rpc/expectedClient.rb",
616
- "test/wsdl/simpletype/rpc/expectedDriver.rb",
617
- "test/wsdl/simpletype/rpc/expectedEchoVersion.rb",
618
- "test/wsdl/simpletype/rpc/expectedMappingRegistry.rb",
619
- "test/wsdl/simpletype/rpc/expectedServant.rb",
620
- "test/wsdl/simpletype/rpc/expectedService.rb",
621
- "test/wsdl/simpletype/rpc/rpc.wsdl",
622
- "test/wsdl/simpletype/rpc/test_rpc.rb",
623
- "test/wsdl/simpletype/simpletype.wsdl",
624
- "test/wsdl/simpletype/test_simpletype.rb",
625
- "test/wsdl/soap/soapbodyparts.wsdl",
626
- "test/wsdl/soap/test_soapbodyparts.rb",
627
- "test/wsdl/soap/wsdl2ruby/echo_version.rb",
628
- "test/wsdl/soap/wsdl2ruby/echo_versionDriver.rb",
629
- "test/wsdl/soap/wsdl2ruby/echo_versionMappingRegistry.rb",
630
- "test/wsdl/soap/wsdl2ruby/echo_versionServant.rb",
631
- "test/wsdl/soap/wsdl2ruby/echo_version_service.cgi",
632
- "test/wsdl/soap/wsdl2ruby/echo_version_service.rb",
633
- "test/wsdl/soap/wsdl2ruby/echo_version_serviceClient.rb",
634
- "test/wsdl/soap/wsdl2ruby/expectedClassdef.rb",
635
- "test/wsdl/soap/wsdl2ruby/expectedClient.rb",
636
- "test/wsdl/soap/wsdl2ruby/expectedDriver.rb",
637
- "test/wsdl/soap/wsdl2ruby/expectedMappingRegistry.rb",
638
- "test/wsdl/soap/wsdl2ruby/expectedServant.rb",
639
- "test/wsdl/soap/wsdl2ruby/expectedService.cgi",
640
- "test/wsdl/soap/wsdl2ruby/expectedService.rb",
641
- "test/wsdl/soap/wsdl2ruby/rpc.wsdl",
642
- "test/wsdl/soap/wsdl2ruby/section/expectedClassdef.rb",
643
- "test/wsdl/soap/wsdl2ruby/section/section.xsd",
644
- "test/wsdl/soap/wsdl2ruby/section/test_section.rb",
645
- "test/wsdl/soap/wsdl2ruby/soapenc/soapenc.wsdl",
646
- "test/wsdl/soap/wsdl2ruby/soapenc/test_soapenc.rb",
647
- "test/wsdl/soap/wsdl2ruby/test_wsdl2ruby.rb",
648
- "test/wsdl/soaptype/soaptype.wsdl",
649
- "test/wsdl/soaptype/test_soaptype.rb",
650
- "test/wsdl/test_emptycomplextype.rb",
651
- "test/wsdl/test_fault.rb",
652
- "test/wsdl/test_multiplefault.rb",
653
- "test/xsd/codegen/test_classdef.rb",
654
- "test/xsd/noencoding.xml",
655
- "test/xsd/test_noencoding.rb",
656
- "test/xsd/test_ns.rb",
657
- "test/xsd/test_xmlschemaparser.rb",
658
- "test/xsd/test_xsd.rb",
659
- "test/xsd/xmllang.xml",
660
- "test/xsd/xmlschema.xml",
661
- "test/xsd/xsd2ruby/expected_mysample.rb",
662
- "test/xsd/xsd2ruby/expected_mysample_mapper.rb",
663
- "test/xsd/xsd2ruby/expected_mysample_mapping_registry.rb",
664
- "test/xsd/xsd2ruby/section.xsd",
665
- "test/xsd/xsd2ruby/test_xsd2ruby.rb"
666
- ]
667
- s.homepage = %q{https://github.com/noeticpenguin/soap4r-noeticpenguin}
668
- s.licenses = ["MIT"]
669
- s.require_paths = ["lib"]
670
- s.rubygems_version = %q{1.6.2}
671
- s.summary = %q{Ruby 1.9.2 compatible soap4r library}
672
- s.test_files = [
673
- "test/16runner.rb",
674
- "test/interopR2/base.rb",
675
- "test/interopR2/client.NetRemoting.rb",
676
- "test/interopR2/client.rb",
677
- "test/interopR2/client4S4C.rb",
678
- "test/interopR2/client4S4C2.rb",
679
- "test/interopR2/clientASP.NET.rb",
680
- "test/interopR2/clientApacheAxis.rb",
681
- "test/interopR2/clientApacheSOAP.rb",
682
- "test/interopR2/clientBEAWebLogic.rb",
683
- "test/interopR2/clientBase.rb",
684
- "test/interopR2/clientCapeConnect.rb",
685
- "test/interopR2/clientDelphi.rb",
686
- "test/interopR2/clientEasySoap.rb",
687
- "test/interopR2/clientFrontier.rb",
688
- "test/interopR2/clientGLUE.rb",
689
- "test/interopR2/clientHP.rb",
690
- "test/interopR2/clientJAX-RPC.rb",
691
- "test/interopR2/clientJSOAP.rb",
692
- "test/interopR2/clientKafkaXSLT.rb",
693
- "test/interopR2/clientMSSOAPToolkit2.0.rb",
694
- "test/interopR2/clientMSSOAPToolkit3.0.rb",
695
- "test/interopR2/clientNuSOAP.rb",
696
- "test/interopR2/clientNuWave.rb",
697
- "test/interopR2/clientOpenLink.rb",
698
- "test/interopR2/clientOracle.rb",
699
- "test/interopR2/clientPEAR.rb",
700
- "test/interopR2/clientPhalanx.rb",
701
- "test/interopR2/clientSIMACE.rb",
702
- "test/interopR2/clientSOAP4R.rb",
703
- "test/interopR2/clientSOAP__Lite.rb",
704
- "test/interopR2/clientSQLData.rb",
705
- "test/interopR2/clientSilverStream.rb",
706
- "test/interopR2/clientSpray2001.rb",
707
- "test/interopR2/clientSun.rb",
708
- "test/interopR2/clientVWOpentalkSoap.rb",
709
- "test/interopR2/clientWASP.rb",
710
- "test/interopR2/clientWASPC.rb",
711
- "test/interopR2/clientWebMethods.rb",
712
- "test/interopR2/clientWhiteMesa.rb",
713
- "test/interopR2/clientWingfoot.rb",
714
- "test/interopR2/clientXMLBus.rb",
715
- "test/interopR2/clientXMLRPC-EPI.rb",
716
- "test/interopR2/clientXSOAP.rb",
717
- "test/interopR2/clientZSI.rb",
718
- "test/interopR2/clienteSOAP.rb",
719
- "test/interopR2/clientgSOAP.rb",
720
- "test/interopR2/clientkSOAP.rb",
721
- "test/interopR2/iSimonReg.rb",
722
- "test/interopR2/interopResultBase.rb",
723
- "test/interopR2/interopService.rb",
724
- "test/interopR2/rwikiInteropService.rb",
725
- "test/interopR2/server.rb",
726
- "test/interopR2/simonReg.rb",
727
- "test/interopR4/client.rb",
728
- "test/runner.rb",
729
- "test/sm11/classDef.rb",
730
- "test/sm11/client.rb",
731
- "test/sm11/driver.rb",
732
- "test/sm11/servant.rb",
733
- "test/sm11/server.rb",
734
- "test/soap/asp.net/test_aspdotnet.rb",
735
- "test/soap/auth/test_basic.rb",
736
- "test/soap/auth/test_digest.rb",
737
- "test/soap/calc/calc.rb",
738
- "test/soap/calc/calc2.rb",
739
- "test/soap/calc/server.rb",
740
- "test/soap/calc/server2.rb",
741
- "test/soap/calc/test_calc.rb",
742
- "test/soap/calc/test_calc2.rb",
743
- "test/soap/calc/test_calc_cgi.rb",
744
- "test/soap/case/test_mapping.rb",
745
- "test/soap/fault/test_customfault.rb",
746
- "test/soap/fault/test_fault.rb",
747
- "test/soap/fault/test_soaparray.rb",
748
- "test/soap/filter/test_filter.rb",
749
- "test/soap/header/test_authheader.rb",
750
- "test/soap/header/test_authheader_cgi.rb",
751
- "test/soap/header/test_simplehandler.rb",
752
- "test/soap/helloworld/hw_s.rb",
753
- "test/soap/helloworld/test_helloworld.rb",
754
- "test/soap/literalArrayMapping/amazonEc.rb",
755
- "test/soap/literalArrayMapping/amazonEcDriver.rb",
756
- "test/soap/literalArrayMapping/test_definedarray.rb",
757
- "test/soap/marshal/marshaltestlib.rb",
758
- "test/soap/marshal/test_digraph.rb",
759
- "test/soap/marshal/test_marshal.rb",
760
- "test/soap/marshal/test_struct.rb",
761
- "test/soap/ssl/sslsvr.rb",
762
- "test/soap/ssl/test_ssl.rb",
763
- "test/soap/struct/test_struct.rb",
764
- "test/soap/styleuse/client.rb",
765
- "test/soap/styleuse/server.rb",
766
- "test/soap/swa/test_file.rb",
767
- "test/soap/test_basetype.rb",
768
- "test/soap/test_cookie.rb",
769
- "test/soap/test_custom_ns.rb",
770
- "test/soap/test_custommap.rb",
771
- "test/soap/test_empty.rb",
772
- "test/soap/test_envelopenamespace.rb",
773
- "test/soap/test_extraattr.rb",
774
- "test/soap/test_generator.rb",
775
- "test/soap/test_httpconfigloader.rb",
776
- "test/soap/test_mapping.rb",
777
- "test/soap/test_nestedexception.rb",
778
- "test/soap/test_nil.rb",
779
- "test/soap/test_no_indent.rb",
780
- "test/soap/test_property.rb",
781
- "test/soap/test_response_as_xml.rb",
782
- "test/soap/test_soapelement.rb",
783
- "test/soap/test_streamhandler.rb",
784
- "test/soap/test_styleuse.rb",
785
- "test/soap/wsdlDriver/echo_version.rb",
786
- "test/soap/wsdlDriver/test_calc.rb",
787
- "test/soap/wsdlDriver/test_document.rb",
788
- "test/soap/wsdlDriver/test_simpletype.rb",
789
- "test/testutil.rb",
790
- "test/wsdl/abstract/test_abstract.rb",
791
- "test/wsdl/anonymous/expectedClassDef.rb",
792
- "test/wsdl/anonymous/expectedDriver.rb",
793
- "test/wsdl/anonymous/expectedMappingRegistry.rb",
794
- "test/wsdl/anonymous/test_anonymous.rb",
795
- "test/wsdl/any/expectedDriver.rb",
796
- "test/wsdl/any/expectedEcho.rb",
797
- "test/wsdl/any/expectedMappingRegistry.rb",
798
- "test/wsdl/any/expectedService.rb",
799
- "test/wsdl/any/test_any.rb",
800
- "test/wsdl/axisArray/test_axisarray.rb",
801
- "test/wsdl/choice/test_choice.rb",
802
- "test/wsdl/complexcontent/test_echo.rb",
803
- "test/wsdl/datetime/DatetimeService.rb",
804
- "test/wsdl/datetime/datetime.rb",
805
- "test/wsdl/datetime/datetimeServant.rb",
806
- "test/wsdl/datetime/test_datetime.rb",
807
- "test/wsdl/document/array/test_array.rb",
808
- "test/wsdl/document/test_nosoapaction.rb",
809
- "test/wsdl/document/test_number.rb",
810
- "test/wsdl/document/test_rpc.rb",
811
- "test/wsdl/fault/test_fault.rb",
812
- "test/wsdl/fault/test_multifault.rb",
813
- "test/wsdl/group/expectedClassdef.rb",
814
- "test/wsdl/group/expectedDriver.rb",
815
- "test/wsdl/group/expectedMappingRegistry.rb",
816
- "test/wsdl/group/test_rpc.rb",
817
- "test/wsdl/list/test_list.rb",
818
- "test/wsdl/map/test_map.rb",
819
- "test/wsdl/marshal/Person.rb",
820
- "test/wsdl/marshal/person_org.rb",
821
- "test/wsdl/marshal/test_wsdlmarshal.rb",
822
- "test/wsdl/oneway/test_oneway.rb",
823
- "test/wsdl/overload/expectedClient.rb",
824
- "test/wsdl/overload/expectedDriver.rb",
825
- "test/wsdl/overload/expectedServant.rb",
826
- "test/wsdl/overload/test_overload.rb",
827
- "test/wsdl/qualified/test_qualified.rb",
828
- "test/wsdl/qualified/test_unqualified.rb",
829
- "test/wsdl/raa/RAAService.rb",
830
- "test/wsdl/raa/expectedClassDef.rb",
831
- "test/wsdl/raa/expectedDriver.rb",
832
- "test/wsdl/raa/expectedMappingRegistry.rb",
833
- "test/wsdl/raa/test_raa.rb",
834
- "test/wsdl/ref/expectedDriver.rb",
835
- "test/wsdl/ref/expectedProduct.rb",
836
- "test/wsdl/ref/test_ref.rb",
837
- "test/wsdl/rpc/test_rpc.rb",
838
- "test/wsdl/rpc/test_rpc_lit.rb",
839
- "test/wsdl/simplecontent/test_simplecontent.rb",
840
- "test/wsdl/simpletype/rpc/echo_version.rb",
841
- "test/wsdl/simpletype/rpc/echo_versionDriver.rb",
842
- "test/wsdl/simpletype/rpc/echo_versionMappingRegistry.rb",
843
- "test/wsdl/simpletype/rpc/echo_versionServant.rb",
844
- "test/wsdl/simpletype/rpc/echo_version_service.rb",
845
- "test/wsdl/simpletype/rpc/echo_version_serviceClient.rb",
846
- "test/wsdl/simpletype/rpc/expectedClient.rb",
847
- "test/wsdl/simpletype/rpc/expectedDriver.rb",
848
- "test/wsdl/simpletype/rpc/expectedEchoVersion.rb",
849
- "test/wsdl/simpletype/rpc/expectedMappingRegistry.rb",
850
- "test/wsdl/simpletype/rpc/expectedServant.rb",
851
- "test/wsdl/simpletype/rpc/expectedService.rb",
852
- "test/wsdl/simpletype/rpc/test_rpc.rb",
853
- "test/wsdl/simpletype/test_simpletype.rb",
854
- "test/wsdl/soap/test_soapbodyparts.rb",
855
- "test/wsdl/soap/wsdl2ruby/echo_version.rb",
856
- "test/wsdl/soap/wsdl2ruby/echo_versionDriver.rb",
857
- "test/wsdl/soap/wsdl2ruby/echo_versionMappingRegistry.rb",
858
- "test/wsdl/soap/wsdl2ruby/echo_versionServant.rb",
859
- "test/wsdl/soap/wsdl2ruby/echo_version_service.rb",
860
- "test/wsdl/soap/wsdl2ruby/echo_version_serviceClient.rb",
861
- "test/wsdl/soap/wsdl2ruby/expectedClassdef.rb",
862
- "test/wsdl/soap/wsdl2ruby/expectedClient.rb",
863
- "test/wsdl/soap/wsdl2ruby/expectedDriver.rb",
864
- "test/wsdl/soap/wsdl2ruby/expectedMappingRegistry.rb",
865
- "test/wsdl/soap/wsdl2ruby/expectedServant.rb",
866
- "test/wsdl/soap/wsdl2ruby/expectedService.rb",
867
- "test/wsdl/soap/wsdl2ruby/section/expectedClassdef.rb",
868
- "test/wsdl/soap/wsdl2ruby/section/test_section.rb",
869
- "test/wsdl/soap/wsdl2ruby/soapenc/test_soapenc.rb",
870
- "test/wsdl/soap/wsdl2ruby/test_wsdl2ruby.rb",
871
- "test/wsdl/soaptype/test_soaptype.rb",
872
- "test/wsdl/test_emptycomplextype.rb",
873
- "test/wsdl/test_fault.rb",
874
- "test/wsdl/test_multiplefault.rb",
875
- "test/xsd/codegen/test_classdef.rb",
876
- "test/xsd/test_noencoding.rb",
877
- "test/xsd/test_ns.rb",
878
- "test/xsd/test_xmlschemaparser.rb",
879
- "test/xsd/test_xsd.rb",
880
- "test/xsd/xsd2ruby/expected_mysample.rb",
881
- "test/xsd/xsd2ruby/expected_mysample_mapper.rb",
882
- "test/xsd/xsd2ruby/expected_mysample_mapping_registry.rb",
883
- "test/xsd/xsd2ruby/test_xsd2ruby.rb"
884
- ]
885
-
886
- if s.respond_to? :specification_version then
887
- s.specification_version = 3
888
-
889
- if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
890
- s.add_development_dependency(%q<shoulda>, [">= 0"])
891
- s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
892
- s.add_development_dependency(%q<jeweler>, ["~> 1.5.2"])
893
- s.add_development_dependency(%q<rcov>, [">= 0"])
894
- else
895
- s.add_dependency(%q<shoulda>, [">= 0"])
896
- s.add_dependency(%q<bundler>, ["~> 1.0.0"])
897
- s.add_dependency(%q<jeweler>, ["~> 1.5.2"])
898
- s.add_dependency(%q<rcov>, [">= 0"])
899
- end
900
- else
901
- s.add_dependency(%q<shoulda>, [">= 0"])
902
- s.add_dependency(%q<bundler>, ["~> 1.0.0"])
903
- s.add_dependency(%q<jeweler>, ["~> 1.5.2"])
904
- s.add_dependency(%q<rcov>, [">= 0"])
905
- end
906
- end
907
-