datanoise-actionwebservice 2.3.2 → 2.3.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1) hide show
  1. metadata +42 -37
metadata CHANGED
@@ -1,7 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: datanoise-actionwebservice
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.2
4
+ hash: 9
5
+ prerelease: false
6
+ segments:
7
+ - 2
8
+ - 3
9
+ - 5
10
+ version: 2.3.5
5
11
  platform: ruby
6
12
  authors:
7
13
  - Leon Breedt, Kent Sibilev
@@ -9,29 +15,41 @@ autorequire:
9
15
  bindir: bin
10
16
  cert_chain: []
11
17
 
12
- date: 2009-03-29 00:00:00 -07:00
18
+ date: 2012-01-18 00:00:00 +02:00
13
19
  default_executable:
14
20
  dependencies:
15
21
  - !ruby/object:Gem::Dependency
16
22
  name: actionpack
17
- type: :runtime
18
- version_requirement:
19
- version_requirements: !ruby/object:Gem::Requirement
23
+ prerelease: false
24
+ requirement: &id001 !ruby/object:Gem::Requirement
25
+ none: false
20
26
  requirements:
21
- - - "="
27
+ - - ">="
22
28
  - !ruby/object:Gem::Version
29
+ hash: 7
30
+ segments:
31
+ - 2
32
+ - 3
33
+ - 2
23
34
  version: 2.3.2
24
- version:
35
+ type: :runtime
36
+ version_requirements: *id001
25
37
  - !ruby/object:Gem::Dependency
26
38
  name: activerecord
27
- type: :runtime
28
- version_requirement:
29
- version_requirements: !ruby/object:Gem::Requirement
39
+ prerelease: false
40
+ requirement: &id002 !ruby/object:Gem::Requirement
41
+ none: false
30
42
  requirements:
31
- - - "="
43
+ - - ">="
32
44
  - !ruby/object:Gem::Version
45
+ hash: 7
46
+ segments:
47
+ - 2
48
+ - 3
49
+ - 2
33
50
  version: 2.3.2
34
- version:
51
+ type: :runtime
52
+ version_requirements: *id002
35
53
  description: Adds WSDL/SOAP and XML-RPC web service support to Action Pack
36
54
  email: bitserf@gmail.com, ksibilev@yahoo.com
37
55
  executables: []
@@ -47,60 +65,44 @@ files:
47
65
  - TODO
48
66
  - CHANGELOG
49
67
  - MIT-LICENSE
50
- - examples/googlesearch
51
- - examples/googlesearch/autoloading
52
68
  - examples/googlesearch/autoloading/google_search_api.rb
53
69
  - examples/googlesearch/autoloading/google_search_controller.rb
54
- - examples/googlesearch/delegated
55
70
  - examples/googlesearch/delegated/google_search_service.rb
56
71
  - examples/googlesearch/delegated/search_controller.rb
57
- - examples/googlesearch/direct
58
72
  - examples/googlesearch/direct/google_search_api.rb
59
73
  - examples/googlesearch/direct/search_controller.rb
60
74
  - examples/googlesearch/README
61
- - examples/metaWeblog
62
- - examples/metaWeblog/apis
63
75
  - examples/metaWeblog/apis/blogger_api.rb
64
76
  - examples/metaWeblog/apis/blogger_service.rb
65
77
  - examples/metaWeblog/apis/meta_weblog_api.rb
66
78
  - examples/metaWeblog/apis/meta_weblog_service.rb
67
- - examples/metaWeblog/controllers
68
79
  - examples/metaWeblog/controllers/xmlrpc_controller.rb
69
80
  - examples/metaWeblog/README
70
- - lib/action_web_service
71
81
  - lib/action_web_service/api.rb
72
82
  - lib/action_web_service/base.rb
73
83
  - lib/action_web_service/casting.rb
74
- - lib/action_web_service/client
75
84
  - lib/action_web_service/client/base.rb
76
85
  - lib/action_web_service/client/soap_client.rb
77
86
  - lib/action_web_service/client/xmlrpc_client.rb
78
87
  - lib/action_web_service/client.rb
79
- - lib/action_web_service/container
80
88
  - lib/action_web_service/container/action_controller_container.rb
81
89
  - lib/action_web_service/container/delegated_container.rb
82
90
  - lib/action_web_service/container/direct_container.rb
83
91
  - lib/action_web_service/container.rb
84
- - lib/action_web_service/dispatcher
85
92
  - lib/action_web_service/dispatcher/abstract.rb
86
93
  - lib/action_web_service/dispatcher/action_controller_dispatcher.rb
87
94
  - lib/action_web_service/dispatcher.rb
88
95
  - lib/action_web_service/invocation.rb
89
- - lib/action_web_service/protocol
90
96
  - lib/action_web_service/protocol/abstract.rb
91
97
  - lib/action_web_service/protocol/discovery.rb
92
- - lib/action_web_service/protocol/soap_protocol
93
98
  - lib/action_web_service/protocol/soap_protocol/marshaler.rb
94
99
  - lib/action_web_service/protocol/soap_protocol.rb
95
100
  - lib/action_web_service/protocol/xmlrpc_protocol.rb
96
101
  - lib/action_web_service/protocol.rb
97
102
  - lib/action_web_service/scaffolding.rb
98
103
  - lib/action_web_service/struct.rb
99
- - lib/action_web_service/support
100
104
  - lib/action_web_service/support/class_inheritable_options.rb
101
105
  - lib/action_web_service/support/signature_types.rb
102
- - lib/action_web_service/templates
103
- - lib/action_web_service/templates/scaffolds
104
106
  - lib/action_web_service/templates/scaffolds/layout.html.erb
105
107
  - lib/action_web_service/templates/scaffolds/methods.html.erb
106
108
  - lib/action_web_service/templates/scaffolds/parameters.html.erb
@@ -113,7 +115,6 @@ files:
113
115
  - test/abstract_dispatcher.rb
114
116
  - test/abstract_unit.rb
115
117
  - test/api_test.rb
116
- - test/apis
117
118
  - test/apis/auto_load_api.rb
118
119
  - test/apis/broken_auto_load_api.rb
119
120
  - test/base_test.rb
@@ -123,8 +124,6 @@ files:
123
124
  - test/container_test.rb
124
125
  - test/dispatcher_action_controller_soap_test.rb
125
126
  - test/dispatcher_action_controller_xmlrpc_test.rb
126
- - test/fixtures
127
- - test/fixtures/db_definitions
128
127
  - test/fixtures/db_definitions/mysql.sql
129
128
  - test/fixtures/users.yml
130
129
  - test/gencov
@@ -133,8 +132,6 @@ files:
133
132
  - test/scaffolded_controller_test.rb
134
133
  - test/struct_test.rb
135
134
  - test/test_invoke_test.rb
136
- - generators/web_service
137
- - generators/web_service/templates
138
135
  - generators/web_service/templates/api_definition.rb
139
136
  - generators/web_service/templates/controller.rb
140
137
  - generators/web_service/templates/functional_test.rb
@@ -142,29 +139,37 @@ files:
142
139
  - generators/web_service/web_service_generator.rb
143
140
  has_rdoc: true
144
141
  homepage: http://www.rubyonrails.org
142
+ licenses: []
143
+
145
144
  post_install_message:
146
145
  rdoc_options: []
147
146
 
148
147
  require_paths:
149
148
  - lib
150
149
  required_ruby_version: !ruby/object:Gem::Requirement
150
+ none: false
151
151
  requirements:
152
152
  - - ">="
153
153
  - !ruby/object:Gem::Version
154
+ hash: 3
155
+ segments:
156
+ - 0
154
157
  version: "0"
155
- version:
156
158
  required_rubygems_version: !ruby/object:Gem::Requirement
159
+ none: false
157
160
  requirements:
158
161
  - - ">="
159
162
  - !ruby/object:Gem::Version
163
+ hash: 3
164
+ segments:
165
+ - 0
160
166
  version: "0"
161
- version:
162
167
  requirements:
163
168
  - none
164
169
  rubyforge_project: aws
165
- rubygems_version: 1.2.0
170
+ rubygems_version: 1.3.7
166
171
  signing_key:
167
- specification_version: 2
172
+ specification_version: 3
168
173
  summary: Web service support for Action Pack.
169
174
  test_files: []
170
175