actionwebservice 1.2.3 → 1.2.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 CHANGED
@@ -1,3 +1,10 @@
1
+ *1.2.4* (October 4th, 2007)
2
+
3
+ * Depend on Action Pack 1.13.4
4
+
5
+ * Depend on Active Record 1.15.4
6
+
7
+
1
8
  *1.2.3* (March 12th, 2007)
2
9
 
3
10
  * Depend on Action Pack 1.13.3
data/Rakefile CHANGED
@@ -71,8 +71,8 @@ spec = Gem::Specification.new do |s|
71
71
  s.rubyforge_project = "aws"
72
72
  s.homepage = "http://www.rubyonrails.org"
73
73
 
74
- s.add_dependency('actionpack', '= 1.13.3' + PKG_BUILD)
75
- s.add_dependency('activerecord', '= 1.15.3' + PKG_BUILD)
74
+ s.add_dependency('actionpack', '= 1.13.4' + PKG_BUILD)
75
+ s.add_dependency('activerecord', '= 1.15.4' + PKG_BUILD)
76
76
 
77
77
  s.has_rdoc = true
78
78
  s.requirements << 'none'
@@ -2,7 +2,7 @@ module ActionWebService
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 1
4
4
  MINOR = 2
5
- TINY = 3
5
+ TINY = 4
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
metadata CHANGED
@@ -1,10 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
- rubygems_version: 0.9.2
2
+ rubygems_version: 0.9.4
3
3
  specification_version: 1
4
4
  name: actionwebservice
5
5
  version: !ruby/object:Gem::Version
6
- version: 1.2.3
7
- date: 2007-03-13 00:00:00 -05:00
6
+ version: 1.2.4
7
+ date: 2007-10-04 00:00:00 -05:00
8
8
  summary: Web service support for Action Pack.
9
9
  require_paths:
10
10
  - lib
@@ -36,71 +36,73 @@ files:
36
36
  - CHANGELOG
37
37
  - MIT-LICENSE
38
38
  - examples/googlesearch
39
- - examples/metaWeblog
40
39
  - examples/googlesearch/autoloading
41
- - examples/googlesearch/delegated
42
- - examples/googlesearch/direct
43
- - examples/googlesearch/README
44
40
  - examples/googlesearch/autoloading/google_search_api.rb
45
41
  - examples/googlesearch/autoloading/google_search_controller.rb
42
+ - examples/googlesearch/delegated
46
43
  - examples/googlesearch/delegated/google_search_service.rb
47
44
  - examples/googlesearch/delegated/search_controller.rb
45
+ - examples/googlesearch/direct
48
46
  - examples/googlesearch/direct/google_search_api.rb
49
47
  - examples/googlesearch/direct/search_controller.rb
48
+ - examples/googlesearch/README
49
+ - examples/metaWeblog
50
50
  - examples/metaWeblog/apis
51
- - examples/metaWeblog/controllers
52
- - examples/metaWeblog/README
53
51
  - examples/metaWeblog/apis/blogger_api.rb
54
52
  - examples/metaWeblog/apis/blogger_service.rb
55
53
  - examples/metaWeblog/apis/meta_weblog_api.rb
56
54
  - examples/metaWeblog/apis/meta_weblog_service.rb
55
+ - examples/metaWeblog/controllers
57
56
  - examples/metaWeblog/controllers/xmlrpc_controller.rb
57
+ - examples/metaWeblog/README
58
58
  - lib/action_web_service
59
- - lib/action_web_service.rb
60
59
  - lib/action_web_service/api.rb
61
60
  - lib/action_web_service/base.rb
62
61
  - lib/action_web_service/casting.rb
63
62
  - lib/action_web_service/client
64
- - lib/action_web_service/client.rb
65
- - lib/action_web_service/container
66
- - lib/action_web_service/container.rb
67
- - lib/action_web_service/dispatcher
68
- - lib/action_web_service/dispatcher.rb
69
- - lib/action_web_service/invocation.rb
70
- - lib/action_web_service/protocol
71
- - lib/action_web_service/protocol.rb
72
- - lib/action_web_service/scaffolding.rb
73
- - lib/action_web_service/struct.rb
74
- - lib/action_web_service/support
75
- - lib/action_web_service/templates
76
- - lib/action_web_service/test_invoke.rb
77
- - lib/action_web_service/version.rb
78
63
  - lib/action_web_service/client/base.rb
79
64
  - lib/action_web_service/client/soap_client.rb
80
65
  - lib/action_web_service/client/xmlrpc_client.rb
66
+ - lib/action_web_service/client.rb
67
+ - lib/action_web_service/container
81
68
  - lib/action_web_service/container/action_controller_container.rb
82
69
  - lib/action_web_service/container/delegated_container.rb
83
70
  - lib/action_web_service/container/direct_container.rb
71
+ - lib/action_web_service/container.rb
72
+ - lib/action_web_service/dispatcher
84
73
  - lib/action_web_service/dispatcher/abstract.rb
85
74
  - lib/action_web_service/dispatcher/action_controller_dispatcher.rb
75
+ - lib/action_web_service/dispatcher.rb
76
+ - lib/action_web_service/invocation.rb
77
+ - lib/action_web_service/protocol
86
78
  - lib/action_web_service/protocol/abstract.rb
87
79
  - lib/action_web_service/protocol/discovery.rb
88
80
  - lib/action_web_service/protocol/soap_protocol
81
+ - lib/action_web_service/protocol/soap_protocol/marshaler.rb
89
82
  - lib/action_web_service/protocol/soap_protocol.rb
90
83
  - lib/action_web_service/protocol/xmlrpc_protocol.rb
91
- - lib/action_web_service/protocol/soap_protocol/marshaler.rb
84
+ - lib/action_web_service/protocol.rb
85
+ - lib/action_web_service/scaffolding.rb
86
+ - lib/action_web_service/struct.rb
87
+ - lib/action_web_service/support
92
88
  - lib/action_web_service/support/class_inheritable_options.rb
93
89
  - lib/action_web_service/support/signature_types.rb
90
+ - lib/action_web_service/templates
94
91
  - lib/action_web_service/templates/scaffolds
95
92
  - lib/action_web_service/templates/scaffolds/layout.rhtml
96
93
  - lib/action_web_service/templates/scaffolds/methods.rhtml
97
94
  - lib/action_web_service/templates/scaffolds/parameters.rhtml
98
95
  - lib/action_web_service/templates/scaffolds/result.rhtml
96
+ - lib/action_web_service/test_invoke.rb
97
+ - lib/action_web_service/version.rb
98
+ - lib/action_web_service.rb
99
99
  - test/abstract_client.rb
100
100
  - test/abstract_dispatcher.rb
101
101
  - test/abstract_unit.rb
102
102
  - test/api_test.rb
103
103
  - test/apis
104
+ - test/apis/auto_load_api.rb
105
+ - test/apis/broken_auto_load_api.rb
104
106
  - test/base_test.rb
105
107
  - test/casting_test.rb
106
108
  - test/client_soap_test.rb
@@ -109,17 +111,15 @@ files:
109
111
  - test/dispatcher_action_controller_soap_test.rb
110
112
  - test/dispatcher_action_controller_xmlrpc_test.rb
111
113
  - test/fixtures
114
+ - test/fixtures/db_definitions
115
+ - test/fixtures/db_definitions/mysql.sql
116
+ - test/fixtures/users.yml
112
117
  - test/gencov
113
118
  - test/invocation_test.rb
114
119
  - test/run
115
120
  - test/scaffolded_controller_test.rb
116
121
  - test/struct_test.rb
117
122
  - test/test_invoke_test.rb
118
- - test/apis/auto_load_api.rb
119
- - test/apis/broken_auto_load_api.rb
120
- - test/fixtures/db_definitions
121
- - test/fixtures/users.yml
122
- - test/fixtures/db_definitions/mysql.sql
123
123
  test_files: []
124
124
 
125
125
  rdoc_options: []
@@ -140,7 +140,7 @@ dependencies:
140
140
  requirements:
141
141
  - - "="
142
142
  - !ruby/object:Gem::Version
143
- version: 1.13.3
143
+ version: 1.13.4
144
144
  version:
145
145
  - !ruby/object:Gem::Dependency
146
146
  name: activerecord
@@ -149,5 +149,5 @@ dependencies:
149
149
  requirements:
150
150
  - - "="
151
151
  - !ruby/object:Gem::Version
152
- version: 1.15.3
152
+ version: 1.15.4
153
153
  version: