reidiculous-actionwebservice-client 3.0.4
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.
- data/CHANGELOG +320 -0
- data/MIT-LICENSE +21 -0
- data/README +381 -0
- data/Rakefile +180 -0
- data/TODO +32 -0
- data/lib/action_web_service.rb +71 -0
- data/lib/action_web_service/api.rb +297 -0
- data/lib/action_web_service/base.rb +38 -0
- data/lib/action_web_service/casting.rb +149 -0
- data/lib/action_web_service/client.rb +3 -0
- data/lib/action_web_service/client/base.rb +28 -0
- data/lib/action_web_service/client/soap_client.rb +113 -0
- data/lib/action_web_service/client/xmlrpc_client.rb +58 -0
- data/lib/action_web_service/container.rb +3 -0
- data/lib/action_web_service/container/action_controller_container.rb +93 -0
- data/lib/action_web_service/container/delegated_container.rb +86 -0
- data/lib/action_web_service/container/direct_container.rb +69 -0
- data/lib/action_web_service/dispatcher.rb +2 -0
- data/lib/action_web_service/dispatcher/abstract.rb +207 -0
- data/lib/action_web_service/dispatcher/action_controller_dispatcher.rb +379 -0
- data/lib/action_web_service/invocation.rb +202 -0
- data/lib/action_web_service/protocol.rb +4 -0
- data/lib/action_web_service/protocol/abstract.rb +115 -0
- data/lib/action_web_service/protocol/discovery.rb +37 -0
- data/lib/action_web_service/protocol/soap_protocol.rb +176 -0
- data/lib/action_web_service/protocol/soap_protocol/marshaler.rb +242 -0
- data/lib/action_web_service/protocol/xmlrpc_protocol.rb +122 -0
- data/lib/action_web_service/scaffolding.rb +281 -0
- data/lib/action_web_service/soap/attachment.rb +107 -0
- data/lib/action_web_service/soap/baseData.rb +942 -0
- data/lib/action_web_service/soap/element.rb +258 -0
- data/lib/action_web_service/soap/encodingstyle/aspDotNetHandler.rb +213 -0
- data/lib/action_web_service/soap/encodingstyle/handler.rb +100 -0
- data/lib/action_web_service/soap/encodingstyle/literalHandler.rb +226 -0
- data/lib/action_web_service/soap/encodingstyle/soapHandler.rb +582 -0
- data/lib/action_web_service/soap/generator.rb +268 -0
- data/lib/action_web_service/soap/header/handler.rb +57 -0
- data/lib/action_web_service/soap/header/handlerset.rb +70 -0
- data/lib/action_web_service/soap/header/simplehandler.rb +44 -0
- data/lib/action_web_service/soap/httpconfigloader.rb +119 -0
- data/lib/action_web_service/soap/mapping.rb +10 -0
- data/lib/action_web_service/soap/mapping/factory.rb +355 -0
- data/lib/action_web_service/soap/mapping/mapping.rb +381 -0
- data/lib/action_web_service/soap/mapping/registry.rb +541 -0
- data/lib/action_web_service/soap/mapping/rubytypeFactory.rb +475 -0
- data/lib/action_web_service/soap/mapping/typeMap.rb +50 -0
- data/lib/action_web_service/soap/mapping/wsdlencodedregistry.rb +280 -0
- data/lib/action_web_service/soap/mapping/wsdlliteralregistry.rb +418 -0
- data/lib/action_web_service/soap/marshal.rb +59 -0
- data/lib/action_web_service/soap/mimemessage.rb +240 -0
- data/lib/action_web_service/soap/netHttpClient.rb +190 -0
- data/lib/action_web_service/soap/parser.rb +251 -0
- data/lib/action_web_service/soap/processor.rb +66 -0
- data/lib/action_web_service/soap/property.rb +333 -0
- data/lib/action_web_service/soap/rpc/cgistub.rb +206 -0
- data/lib/action_web_service/soap/rpc/driver.rb +254 -0
- data/lib/action_web_service/soap/rpc/element.rb +325 -0
- data/lib/action_web_service/soap/rpc/httpserver.rb +129 -0
- data/lib/action_web_service/soap/rpc/proxy.rb +497 -0
- data/lib/action_web_service/soap/rpc/router.rb +594 -0
- data/lib/action_web_service/soap/rpc/rpc.rb +25 -0
- data/lib/action_web_service/soap/rpc/soaplet.rb +162 -0
- data/lib/action_web_service/soap/rpc/standaloneServer.rb +43 -0
- data/lib/action_web_service/soap/soap.rb +140 -0
- data/lib/action_web_service/soap/streamHandler.rb +229 -0
- data/lib/action_web_service/soap/wsdlDriver.rb +575 -0
- data/lib/action_web_service/struct.rb +64 -0
- data/lib/action_web_service/support/class_inheritable_options.rb +28 -0
- data/lib/action_web_service/support/signature_types.rb +227 -0
- data/lib/action_web_service/test_invoke.rb +110 -0
- data/lib/action_web_service/version.rb +9 -0
- data/lib/action_web_service/wsdl/binding.rb +65 -0
- data/lib/action_web_service/wsdl/data.rb +64 -0
- data/lib/action_web_service/wsdl/definitions.rb +250 -0
- data/lib/action_web_service/wsdl/documentation.rb +32 -0
- data/lib/action_web_service/wsdl/import.rb +80 -0
- data/lib/action_web_service/wsdl/importer.rb +38 -0
- data/lib/action_web_service/wsdl/info.rb +39 -0
- data/lib/action_web_service/wsdl/message.rb +54 -0
- data/lib/action_web_service/wsdl/operation.rb +130 -0
- data/lib/action_web_service/wsdl/operationBinding.rb +108 -0
- data/lib/action_web_service/wsdl/param.rb +85 -0
- data/lib/action_web_service/wsdl/parser.rb +163 -0
- data/lib/action_web_service/wsdl/part.rb +52 -0
- data/lib/action_web_service/wsdl/port.rb +84 -0
- data/lib/action_web_service/wsdl/portType.rb +73 -0
- data/lib/action_web_service/wsdl/service.rb +61 -0
- data/lib/action_web_service/wsdl/soap/address.rb +40 -0
- data/lib/action_web_service/wsdl/soap/binding.rb +49 -0
- data/lib/action_web_service/wsdl/soap/body.rb +56 -0
- data/lib/action_web_service/wsdl/soap/cgiStubCreator.rb +76 -0
- data/lib/action_web_service/wsdl/soap/classDefCreator.rb +314 -0
- data/lib/action_web_service/wsdl/soap/classDefCreatorSupport.rb +126 -0
- data/lib/action_web_service/wsdl/soap/clientSkeltonCreator.rb +78 -0
- data/lib/action_web_service/wsdl/soap/complexType.rb +161 -0
- data/lib/action_web_service/wsdl/soap/data.rb +42 -0
- data/lib/action_web_service/wsdl/soap/definitions.rb +149 -0
- data/lib/action_web_service/wsdl/soap/driverCreator.rb +95 -0
- data/lib/action_web_service/wsdl/soap/element.rb +28 -0
- data/lib/action_web_service/wsdl/soap/fault.rb +56 -0
- data/lib/action_web_service/wsdl/soap/header.rb +86 -0
- data/lib/action_web_service/wsdl/soap/headerfault.rb +56 -0
- data/lib/action_web_service/wsdl/soap/mappingRegistryCreator.rb +92 -0
- data/lib/action_web_service/wsdl/soap/methodDefCreator.rb +228 -0
- data/lib/action_web_service/wsdl/soap/operation.rb +122 -0
- data/lib/action_web_service/wsdl/soap/servantSkeltonCreator.rb +67 -0
- data/lib/action_web_service/wsdl/soap/standaloneServerStubCreator.rb +85 -0
- data/lib/action_web_service/wsdl/soap/wsdl2ruby.rb +176 -0
- data/lib/action_web_service/wsdl/types.rb +43 -0
- data/lib/action_web_service/wsdl/wsdl.rb +23 -0
- data/lib/action_web_service/wsdl/xmlSchema/all.rb +69 -0
- data/lib/action_web_service/wsdl/xmlSchema/annotation.rb +34 -0
- data/lib/action_web_service/wsdl/xmlSchema/any.rb +56 -0
- data/lib/action_web_service/wsdl/xmlSchema/attribute.rb +127 -0
- data/lib/action_web_service/wsdl/xmlSchema/choice.rb +69 -0
- data/lib/action_web_service/wsdl/xmlSchema/complexContent.rb +92 -0
- data/lib/action_web_service/wsdl/xmlSchema/complexType.rb +139 -0
- data/lib/action_web_service/wsdl/xmlSchema/content.rb +96 -0
- data/lib/action_web_service/wsdl/xmlSchema/data.rb +80 -0
- data/lib/action_web_service/wsdl/xmlSchema/element.rb +154 -0
- data/lib/action_web_service/wsdl/xmlSchema/enumeration.rb +36 -0
- data/lib/action_web_service/wsdl/xmlSchema/import.rb +65 -0
- data/lib/action_web_service/wsdl/xmlSchema/importer.rb +87 -0
- data/lib/action_web_service/wsdl/xmlSchema/include.rb +54 -0
- data/lib/action_web_service/wsdl/xmlSchema/length.rb +35 -0
- data/lib/action_web_service/wsdl/xmlSchema/parser.rb +166 -0
- data/lib/action_web_service/wsdl/xmlSchema/pattern.rb +36 -0
- data/lib/action_web_service/wsdl/xmlSchema/schema.rb +143 -0
- data/lib/action_web_service/wsdl/xmlSchema/sequence.rb +69 -0
- data/lib/action_web_service/wsdl/xmlSchema/simpleContent.rb +65 -0
- data/lib/action_web_service/wsdl/xmlSchema/simpleExtension.rb +54 -0
- data/lib/action_web_service/wsdl/xmlSchema/simpleRestriction.rb +73 -0
- data/lib/action_web_service/wsdl/xmlSchema/simpleType.rb +73 -0
- data/lib/action_web_service/wsdl/xmlSchema/unique.rb +34 -0
- data/lib/action_web_service/wsdl/xmlSchema/xsd2ruby.rb +107 -0
- data/lib/action_web_service/xsd/charset.rb +187 -0
- data/lib/action_web_service/xsd/codegen.rb +12 -0
- data/lib/action_web_service/xsd/codegen/classdef.rb +203 -0
- data/lib/action_web_service/xsd/codegen/commentdef.rb +34 -0
- data/lib/action_web_service/xsd/codegen/gensupport.rb +166 -0
- data/lib/action_web_service/xsd/codegen/methoddef.rb +63 -0
- data/lib/action_web_service/xsd/codegen/moduledef.rb +191 -0
- data/lib/action_web_service/xsd/datatypes.rb +1269 -0
- data/lib/action_web_service/xsd/datatypes1999.rb +20 -0
- data/lib/action_web_service/xsd/iconvcharset.rb +33 -0
- data/lib/action_web_service/xsd/mapping.rb +42 -0
- data/lib/action_web_service/xsd/namedelements.rb +95 -0
- data/lib/action_web_service/xsd/ns.rb +140 -0
- data/lib/action_web_service/xsd/qname.rb +78 -0
- data/lib/action_web_service/xsd/xmlparser.rb +61 -0
- data/lib/action_web_service/xsd/xmlparser/parser.rb +96 -0
- data/lib/action_web_service/xsd/xmlparser/rexmlparser.rb +54 -0
- data/lib/action_web_service/xsd/xmlparser/xmlparser.rb +50 -0
- data/lib/action_web_service/xsd/xmlparser/xmlscanner.rb +147 -0
- data/lib/actionwebservice.rb +1 -0
- data/setup.rb +1379 -0
- data/test/abstract_client.rb +183 -0
- data/test/abstract_dispatcher.rb +548 -0
- data/test/abstract_unit.rb +45 -0
- data/test/api_test.rb +103 -0
- data/test/apis/auto_load_api.rb +3 -0
- data/test/apis/broken_auto_load_api.rb +2 -0
- data/test/base_test.rb +42 -0
- data/test/casting_test.rb +95 -0
- data/test/client_soap_test.rb +156 -0
- data/test/client_xmlrpc_test.rb +153 -0
- data/test/container_test.rb +73 -0
- data/test/dispatcher_action_controller_soap_test.rb +139 -0
- data/test/dispatcher_action_controller_xmlrpc_test.rb +59 -0
- data/test/fixtures/db_definitions/mysql.sql +8 -0
- data/test/fixtures/db_definitions/sqlite3.sql +8 -0
- data/test/fixtures/users.yml +12 -0
- data/test/gencov +3 -0
- data/test/invocation_test.rb +185 -0
- data/test/run +6 -0
- data/test/scaffolded_controller_test.rb +146 -0
- data/test/struct_test.rb +52 -0
- data/test/test_invoke_test.rb +112 -0
- metadata +265 -0
metadata
ADDED
@@ -0,0 +1,265 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: reidiculous-actionwebservice-client
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease:
|
5
|
+
version: 3.0.4
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Leon Breedt, Kent Sibilev
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
|
13
|
+
date: 2011-02-15 00:00:00 -05:00
|
14
|
+
default_executable:
|
15
|
+
dependencies:
|
16
|
+
- !ruby/object:Gem::Dependency
|
17
|
+
name: actionpack
|
18
|
+
prerelease: false
|
19
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
20
|
+
none: false
|
21
|
+
requirements:
|
22
|
+
- - "="
|
23
|
+
- !ruby/object:Gem::Version
|
24
|
+
version: 3.0.4
|
25
|
+
type: :runtime
|
26
|
+
version_requirements: *id001
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: activerecord
|
29
|
+
prerelease: false
|
30
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
31
|
+
none: false
|
32
|
+
requirements:
|
33
|
+
- - "="
|
34
|
+
- !ruby/object:Gem::Version
|
35
|
+
version: 3.0.4
|
36
|
+
type: :runtime
|
37
|
+
version_requirements: *id002
|
38
|
+
- !ruby/object:Gem::Dependency
|
39
|
+
name: activesupport
|
40
|
+
prerelease: false
|
41
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
42
|
+
none: false
|
43
|
+
requirements:
|
44
|
+
- - "="
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: 3.0.4
|
47
|
+
type: :runtime
|
48
|
+
version_requirements: *id003
|
49
|
+
description: Adds WSDL/SOAP and XML-RPC web service support to Action Pack
|
50
|
+
email: bitserf@gmail.com, ksibilev@yahoo.com
|
51
|
+
executables: []
|
52
|
+
|
53
|
+
extensions: []
|
54
|
+
|
55
|
+
extra_rdoc_files: []
|
56
|
+
|
57
|
+
files:
|
58
|
+
- Rakefile
|
59
|
+
- setup.rb
|
60
|
+
- README
|
61
|
+
- TODO
|
62
|
+
- CHANGELOG
|
63
|
+
- MIT-LICENSE
|
64
|
+
- lib/action_web_service/api.rb
|
65
|
+
- lib/action_web_service/base.rb
|
66
|
+
- lib/action_web_service/casting.rb
|
67
|
+
- lib/action_web_service/client/base.rb
|
68
|
+
- lib/action_web_service/client/soap_client.rb
|
69
|
+
- lib/action_web_service/client/xmlrpc_client.rb
|
70
|
+
- lib/action_web_service/client.rb
|
71
|
+
- lib/action_web_service/container/action_controller_container.rb
|
72
|
+
- lib/action_web_service/container/delegated_container.rb
|
73
|
+
- lib/action_web_service/container/direct_container.rb
|
74
|
+
- lib/action_web_service/container.rb
|
75
|
+
- lib/action_web_service/dispatcher/abstract.rb
|
76
|
+
- lib/action_web_service/dispatcher/action_controller_dispatcher.rb
|
77
|
+
- lib/action_web_service/dispatcher.rb
|
78
|
+
- lib/action_web_service/invocation.rb
|
79
|
+
- lib/action_web_service/protocol/abstract.rb
|
80
|
+
- lib/action_web_service/protocol/discovery.rb
|
81
|
+
- lib/action_web_service/protocol/soap_protocol/marshaler.rb
|
82
|
+
- lib/action_web_service/protocol/soap_protocol.rb
|
83
|
+
- lib/action_web_service/protocol/xmlrpc_protocol.rb
|
84
|
+
- lib/action_web_service/protocol.rb
|
85
|
+
- lib/action_web_service/scaffolding.rb
|
86
|
+
- lib/action_web_service/soap/attachment.rb
|
87
|
+
- lib/action_web_service/soap/baseData.rb
|
88
|
+
- lib/action_web_service/soap/element.rb
|
89
|
+
- lib/action_web_service/soap/encodingstyle/aspDotNetHandler.rb
|
90
|
+
- lib/action_web_service/soap/encodingstyle/handler.rb
|
91
|
+
- lib/action_web_service/soap/encodingstyle/literalHandler.rb
|
92
|
+
- lib/action_web_service/soap/encodingstyle/soapHandler.rb
|
93
|
+
- lib/action_web_service/soap/generator.rb
|
94
|
+
- lib/action_web_service/soap/header/handler.rb
|
95
|
+
- lib/action_web_service/soap/header/handlerset.rb
|
96
|
+
- lib/action_web_service/soap/header/simplehandler.rb
|
97
|
+
- lib/action_web_service/soap/httpconfigloader.rb
|
98
|
+
- lib/action_web_service/soap/mapping/factory.rb
|
99
|
+
- lib/action_web_service/soap/mapping/mapping.rb
|
100
|
+
- lib/action_web_service/soap/mapping/registry.rb
|
101
|
+
- lib/action_web_service/soap/mapping/rubytypeFactory.rb
|
102
|
+
- lib/action_web_service/soap/mapping/typeMap.rb
|
103
|
+
- lib/action_web_service/soap/mapping/wsdlencodedregistry.rb
|
104
|
+
- lib/action_web_service/soap/mapping/wsdlliteralregistry.rb
|
105
|
+
- lib/action_web_service/soap/mapping.rb
|
106
|
+
- lib/action_web_service/soap/marshal.rb
|
107
|
+
- lib/action_web_service/soap/mimemessage.rb
|
108
|
+
- lib/action_web_service/soap/netHttpClient.rb
|
109
|
+
- lib/action_web_service/soap/parser.rb
|
110
|
+
- lib/action_web_service/soap/processor.rb
|
111
|
+
- lib/action_web_service/soap/property.rb
|
112
|
+
- lib/action_web_service/soap/rpc/cgistub.rb
|
113
|
+
- lib/action_web_service/soap/rpc/driver.rb
|
114
|
+
- lib/action_web_service/soap/rpc/element.rb
|
115
|
+
- lib/action_web_service/soap/rpc/httpserver.rb
|
116
|
+
- lib/action_web_service/soap/rpc/proxy.rb
|
117
|
+
- lib/action_web_service/soap/rpc/router.rb
|
118
|
+
- lib/action_web_service/soap/rpc/rpc.rb
|
119
|
+
- lib/action_web_service/soap/rpc/soaplet.rb
|
120
|
+
- lib/action_web_service/soap/rpc/standaloneServer.rb
|
121
|
+
- lib/action_web_service/soap/soap.rb
|
122
|
+
- lib/action_web_service/soap/streamHandler.rb
|
123
|
+
- lib/action_web_service/soap/wsdlDriver.rb
|
124
|
+
- lib/action_web_service/struct.rb
|
125
|
+
- lib/action_web_service/support/class_inheritable_options.rb
|
126
|
+
- lib/action_web_service/support/signature_types.rb
|
127
|
+
- lib/action_web_service/test_invoke.rb
|
128
|
+
- lib/action_web_service/version.rb
|
129
|
+
- lib/action_web_service/wsdl/binding.rb
|
130
|
+
- lib/action_web_service/wsdl/data.rb
|
131
|
+
- lib/action_web_service/wsdl/definitions.rb
|
132
|
+
- lib/action_web_service/wsdl/documentation.rb
|
133
|
+
- lib/action_web_service/wsdl/import.rb
|
134
|
+
- lib/action_web_service/wsdl/importer.rb
|
135
|
+
- lib/action_web_service/wsdl/info.rb
|
136
|
+
- lib/action_web_service/wsdl/message.rb
|
137
|
+
- lib/action_web_service/wsdl/operation.rb
|
138
|
+
- lib/action_web_service/wsdl/operationBinding.rb
|
139
|
+
- lib/action_web_service/wsdl/param.rb
|
140
|
+
- lib/action_web_service/wsdl/parser.rb
|
141
|
+
- lib/action_web_service/wsdl/part.rb
|
142
|
+
- lib/action_web_service/wsdl/port.rb
|
143
|
+
- lib/action_web_service/wsdl/portType.rb
|
144
|
+
- lib/action_web_service/wsdl/service.rb
|
145
|
+
- lib/action_web_service/wsdl/soap/address.rb
|
146
|
+
- lib/action_web_service/wsdl/soap/binding.rb
|
147
|
+
- lib/action_web_service/wsdl/soap/body.rb
|
148
|
+
- lib/action_web_service/wsdl/soap/cgiStubCreator.rb
|
149
|
+
- lib/action_web_service/wsdl/soap/classDefCreator.rb
|
150
|
+
- lib/action_web_service/wsdl/soap/classDefCreatorSupport.rb
|
151
|
+
- lib/action_web_service/wsdl/soap/clientSkeltonCreator.rb
|
152
|
+
- lib/action_web_service/wsdl/soap/complexType.rb
|
153
|
+
- lib/action_web_service/wsdl/soap/data.rb
|
154
|
+
- lib/action_web_service/wsdl/soap/definitions.rb
|
155
|
+
- lib/action_web_service/wsdl/soap/driverCreator.rb
|
156
|
+
- lib/action_web_service/wsdl/soap/element.rb
|
157
|
+
- lib/action_web_service/wsdl/soap/fault.rb
|
158
|
+
- lib/action_web_service/wsdl/soap/header.rb
|
159
|
+
- lib/action_web_service/wsdl/soap/headerfault.rb
|
160
|
+
- lib/action_web_service/wsdl/soap/mappingRegistryCreator.rb
|
161
|
+
- lib/action_web_service/wsdl/soap/methodDefCreator.rb
|
162
|
+
- lib/action_web_service/wsdl/soap/operation.rb
|
163
|
+
- lib/action_web_service/wsdl/soap/servantSkeltonCreator.rb
|
164
|
+
- lib/action_web_service/wsdl/soap/standaloneServerStubCreator.rb
|
165
|
+
- lib/action_web_service/wsdl/soap/wsdl2ruby.rb
|
166
|
+
- lib/action_web_service/wsdl/types.rb
|
167
|
+
- lib/action_web_service/wsdl/wsdl.rb
|
168
|
+
- lib/action_web_service/wsdl/xmlSchema/all.rb
|
169
|
+
- lib/action_web_service/wsdl/xmlSchema/annotation.rb
|
170
|
+
- lib/action_web_service/wsdl/xmlSchema/any.rb
|
171
|
+
- lib/action_web_service/wsdl/xmlSchema/attribute.rb
|
172
|
+
- lib/action_web_service/wsdl/xmlSchema/choice.rb
|
173
|
+
- lib/action_web_service/wsdl/xmlSchema/complexContent.rb
|
174
|
+
- lib/action_web_service/wsdl/xmlSchema/complexType.rb
|
175
|
+
- lib/action_web_service/wsdl/xmlSchema/content.rb
|
176
|
+
- lib/action_web_service/wsdl/xmlSchema/data.rb
|
177
|
+
- lib/action_web_service/wsdl/xmlSchema/element.rb
|
178
|
+
- lib/action_web_service/wsdl/xmlSchema/enumeration.rb
|
179
|
+
- lib/action_web_service/wsdl/xmlSchema/import.rb
|
180
|
+
- lib/action_web_service/wsdl/xmlSchema/importer.rb
|
181
|
+
- lib/action_web_service/wsdl/xmlSchema/include.rb
|
182
|
+
- lib/action_web_service/wsdl/xmlSchema/length.rb
|
183
|
+
- lib/action_web_service/wsdl/xmlSchema/parser.rb
|
184
|
+
- lib/action_web_service/wsdl/xmlSchema/pattern.rb
|
185
|
+
- lib/action_web_service/wsdl/xmlSchema/schema.rb
|
186
|
+
- lib/action_web_service/wsdl/xmlSchema/sequence.rb
|
187
|
+
- lib/action_web_service/wsdl/xmlSchema/simpleContent.rb
|
188
|
+
- lib/action_web_service/wsdl/xmlSchema/simpleExtension.rb
|
189
|
+
- lib/action_web_service/wsdl/xmlSchema/simpleRestriction.rb
|
190
|
+
- lib/action_web_service/wsdl/xmlSchema/simpleType.rb
|
191
|
+
- lib/action_web_service/wsdl/xmlSchema/unique.rb
|
192
|
+
- lib/action_web_service/wsdl/xmlSchema/xsd2ruby.rb
|
193
|
+
- lib/action_web_service/xsd/charset.rb
|
194
|
+
- lib/action_web_service/xsd/codegen/classdef.rb
|
195
|
+
- lib/action_web_service/xsd/codegen/commentdef.rb
|
196
|
+
- lib/action_web_service/xsd/codegen/gensupport.rb
|
197
|
+
- lib/action_web_service/xsd/codegen/methoddef.rb
|
198
|
+
- lib/action_web_service/xsd/codegen/moduledef.rb
|
199
|
+
- lib/action_web_service/xsd/codegen.rb
|
200
|
+
- lib/action_web_service/xsd/datatypes.rb
|
201
|
+
- lib/action_web_service/xsd/datatypes1999.rb
|
202
|
+
- lib/action_web_service/xsd/iconvcharset.rb
|
203
|
+
- lib/action_web_service/xsd/mapping.rb
|
204
|
+
- lib/action_web_service/xsd/namedelements.rb
|
205
|
+
- lib/action_web_service/xsd/ns.rb
|
206
|
+
- lib/action_web_service/xsd/qname.rb
|
207
|
+
- lib/action_web_service/xsd/xmlparser/parser.rb
|
208
|
+
- lib/action_web_service/xsd/xmlparser/rexmlparser.rb
|
209
|
+
- lib/action_web_service/xsd/xmlparser/xmlparser.rb
|
210
|
+
- lib/action_web_service/xsd/xmlparser/xmlscanner.rb
|
211
|
+
- lib/action_web_service/xsd/xmlparser.rb
|
212
|
+
- lib/action_web_service.rb
|
213
|
+
- lib/actionwebservice.rb
|
214
|
+
- test/abstract_client.rb
|
215
|
+
- test/abstract_dispatcher.rb
|
216
|
+
- test/abstract_unit.rb
|
217
|
+
- test/api_test.rb
|
218
|
+
- test/apis/auto_load_api.rb
|
219
|
+
- test/apis/broken_auto_load_api.rb
|
220
|
+
- test/base_test.rb
|
221
|
+
- test/casting_test.rb
|
222
|
+
- test/client_soap_test.rb
|
223
|
+
- test/client_xmlrpc_test.rb
|
224
|
+
- test/container_test.rb
|
225
|
+
- test/dispatcher_action_controller_soap_test.rb
|
226
|
+
- test/dispatcher_action_controller_xmlrpc_test.rb
|
227
|
+
- test/fixtures/db_definitions/mysql.sql
|
228
|
+
- test/fixtures/db_definitions/sqlite3.sql
|
229
|
+
- test/fixtures/users.yml
|
230
|
+
- test/gencov
|
231
|
+
- test/invocation_test.rb
|
232
|
+
- test/run
|
233
|
+
- test/scaffolded_controller_test.rb
|
234
|
+
- test/struct_test.rb
|
235
|
+
- test/test_invoke_test.rb
|
236
|
+
has_rdoc: true
|
237
|
+
homepage: http://www.rubyonrails.org
|
238
|
+
licenses: []
|
239
|
+
|
240
|
+
post_install_message:
|
241
|
+
rdoc_options: []
|
242
|
+
|
243
|
+
require_paths:
|
244
|
+
- lib
|
245
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
246
|
+
none: false
|
247
|
+
requirements:
|
248
|
+
- - ">="
|
249
|
+
- !ruby/object:Gem::Version
|
250
|
+
version: "0"
|
251
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
252
|
+
none: false
|
253
|
+
requirements:
|
254
|
+
- - ">="
|
255
|
+
- !ruby/object:Gem::Version
|
256
|
+
version: "0"
|
257
|
+
requirements:
|
258
|
+
- none
|
259
|
+
rubyforge_project: aws
|
260
|
+
rubygems_version: 1.5.2
|
261
|
+
signing_key:
|
262
|
+
specification_version: 3
|
263
|
+
summary: Web service support for Action Pack.
|
264
|
+
test_files: []
|
265
|
+
|