From 100015cd806e31578a03ba23ffbc12c093118a26 Mon Sep 17 00:00:00 2001 From: Leon Breedt Date: Sun, 27 Feb 2005 21:21:40 +0000 Subject: Make all custom types and method calls are declared in the 'urn:ActionWebService' namespace as a default, fixes SOAP marshaling for .NET, a regression since the merge. Make array annotation be recursive in WS::Marshaling::SoapMarshaling, this makes typed arrays buried in nested structures still be annotated correctly. Support :layered dispatching mode for XML-RPC namespaced method names. Change WS::ParamInfo.create signature to require type_binding, and update all uses of this. Restore #default_api_method functionality, fixes a regression since the merge. Fix marshalling of ActiveRecord::Base derivatives, fixes a regression since the merge. This changeset closes #676, #677, and #678. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@811 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionwebservice/Rakefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'actionwebservice/Rakefile') diff --git a/actionwebservice/Rakefile b/actionwebservice/Rakefile index fff80c3ff5..72c767976d 100644 --- a/actionwebservice/Rakefile +++ b/actionwebservice/Rakefile @@ -31,12 +31,14 @@ Rake::RDocTask.new { |rdoc| rdoc.title = "Action Web Service -- Web services for Action Pack" rdoc.options << '--line-numbers --inline-source --main README --accessor class_inheritable_option=RW' rdoc.rdoc_files.include('README') + rdoc.rdoc_files.include('CHANGELOG') rdoc.rdoc_files.include('lib/action_web_service.rb') rdoc.rdoc_files.include('lib/action_web_service/*.rb') rdoc.rdoc_files.include('lib/action_web_service/api/*.rb') rdoc.rdoc_files.include('lib/action_web_service/client/*.rb') - rdoc.rdoc_files.include('lib/action_web_service/protocol/*.rb') + rdoc.rdoc_files.include('lib/action_web_service/container/*.rb') rdoc.rdoc_files.include('lib/action_web_service/dispatcher/*.rb') + rdoc.rdoc_files.include('lib/action_web_service/protocol/*.rb') rdoc.rdoc_files.include('lib/action_web_service/support/*.rb') } @@ -63,7 +65,7 @@ spec = Gem::Specification.new do |s| s.require_path = 'lib' s.autorequire = 'action_web_service' - s.files = [ "Rakefile", "setup.rb", "README", "TODO", "ChangeLog", "MIT-LICENSE" ] + s.files = [ "Rakefile", "setup.rb", "README", "TODO", "CHANGELOG", "MIT-LICENSE" ] s.files = s.files + Dir.glob( "examples/**/*" ).delete_if { |item| item.include?( "\.svn" ) } s.files = s.files + Dir.glob( "lib/**/*" ).delete_if { |item| item.include?( "\.svn" ) } s.files = s.files + Dir.glob( "test/**/*" ).delete_if { |item| item.include?( "\.svn" ) } -- cgit v1.2.3