diff options
author | Marcel Molina <marcel@vernix.org> | 2006-04-29 18:10:14 +0000 |
---|---|---|
committer | Marcel Molina <marcel@vernix.org> | 2006-04-29 18:10:14 +0000 |
commit | 61864909628f5ac2f20d3337e0274dab016ac7c5 (patch) | |
tree | 86a8cc11110b1009f23fe0c72a6138f8ac45d31a /actionwebservice | |
parent | df26041c8990d4a0276e7a4c77cc771ac38e176e (diff) | |
download | rails-61864909628f5ac2f20d3337e0274dab016ac7c5.tar.gz rails-61864909628f5ac2f20d3337e0274dab016ac7c5.tar.bz2 rails-61864909628f5ac2f20d3337e0274dab016ac7c5.zip |
Replace Ruby's deprecated append_features in favor of included. [Marcel Molina Jr.]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4310 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionwebservice')
8 files changed, 10 insertions, 15 deletions
diff --git a/actionwebservice/CHANGELOG b/actionwebservice/CHANGELOG index 8cbad8c779..c84787ef75 100644 --- a/actionwebservice/CHANGELOG +++ b/actionwebservice/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Replace Ruby's deprecated append_features in favor of included. [Marcel Molina Jr.] + * Fix test database name typo. [Marcel Molina Jr.] *1.1.2* (April 9th, 2005) diff --git a/actionwebservice/lib/action_web_service/container/action_controller_container.rb b/actionwebservice/lib/action_web_service/container/action_controller_container.rb index b74b5ba6d4..e96ee0692d 100644 --- a/actionwebservice/lib/action_web_service/container/action_controller_container.rb +++ b/actionwebservice/lib/action_web_service/container/action_controller_container.rb @@ -1,7 +1,7 @@ module ActionWebService # :nodoc: module Container # :nodoc: module ActionController # :nodoc: - def self.append_features(base) # :nodoc: + def self.included(base) # :nodoc: class << base include ClassMethods alias_method :inherited_without_api, :inherited diff --git a/actionwebservice/lib/action_web_service/container/delegated_container.rb b/actionwebservice/lib/action_web_service/container/delegated_container.rb index 12a857e4e3..5477f8d103 100644 --- a/actionwebservice/lib/action_web_service/container/delegated_container.rb +++ b/actionwebservice/lib/action_web_service/container/delegated_container.rb @@ -4,8 +4,7 @@ module ActionWebService # :nodoc: class ContainerError < ActionWebServiceError # :nodoc: end - def self.append_features(base) # :nodoc: - super + def self.included(base) # :nodoc: base.extend(ClassMethods) base.send(:include, ActionWebService::Container::Delegated::InstanceMethods) end diff --git a/actionwebservice/lib/action_web_service/container/direct_container.rb b/actionwebservice/lib/action_web_service/container/direct_container.rb index b53c542fc8..8818d8f459 100644 --- a/actionwebservice/lib/action_web_service/container/direct_container.rb +++ b/actionwebservice/lib/action_web_service/container/direct_container.rb @@ -4,8 +4,7 @@ module ActionWebService # :nodoc: class ContainerError < ActionWebServiceError # :nodoc: end - def self.append_features(base) # :nodoc: - super + def self.included(base) # :nodoc: base.extend(ClassMethods) end diff --git a/actionwebservice/lib/action_web_service/dispatcher/abstract.rb b/actionwebservice/lib/action_web_service/dispatcher/abstract.rb index cf3af538ab..96016ef67e 100644 --- a/actionwebservice/lib/action_web_service/dispatcher/abstract.rb +++ b/actionwebservice/lib/action_web_service/dispatcher/abstract.rb @@ -5,8 +5,7 @@ module ActionWebService # :nodoc: class DispatcherError < ActionWebService::ActionWebServiceError # :nodoc: end - def self.append_features(base) # :nodoc: - super + def self.included(base) # :nodoc: base.class_inheritable_option(:web_service_dispatching_mode, :direct) base.class_inheritable_option(:web_service_exception_reporting, true) base.send(:include, ActionWebService::Dispatcher::InstanceMethods) diff --git a/actionwebservice/lib/action_web_service/dispatcher/action_controller_dispatcher.rb b/actionwebservice/lib/action_web_service/dispatcher/action_controller_dispatcher.rb index 8f04ed292c..f1fd6137f5 100644 --- a/actionwebservice/lib/action_web_service/dispatcher/action_controller_dispatcher.rb +++ b/actionwebservice/lib/action_web_service/dispatcher/action_controller_dispatcher.rb @@ -4,8 +4,7 @@ require 'builder/xmlmarkup' module ActionWebService # :nodoc: module Dispatcher # :nodoc: module ActionController # :nodoc: - def self.append_features(base) # :nodoc: - super + def self.included(base) # :nodoc: class << base include ClassMethods alias_method :inherited_without_action_controller, :inherited diff --git a/actionwebservice/lib/action_web_service/invocation.rb b/actionwebservice/lib/action_web_service/invocation.rb index 62f38b8ecd..c37e923fc7 100644 --- a/actionwebservice/lib/action_web_service/invocation.rb +++ b/actionwebservice/lib/action_web_service/invocation.rb @@ -3,8 +3,7 @@ module ActionWebService # :nodoc: class InvocationError < ActionWebService::ActionWebServiceError # :nodoc: end - def self.append_features(base) # :nodoc: - super + def self.included(base) # :nodoc: base.extend(ClassMethods) base.send(:include, ActionWebService::Invocation::InstanceMethods) end @@ -125,8 +124,7 @@ module ActionWebService # :nodoc: end module InstanceMethods # :nodoc: - def self.append_features(base) - super + def self.included(base) base.class_eval do alias_method :perform_invocation_without_interception, :perform_invocation alias_method :perform_invocation, :perform_invocation_with_interception diff --git a/actionwebservice/lib/action_web_service/scaffolding.rb b/actionwebservice/lib/action_web_service/scaffolding.rb index e0e00d831b..8f15032c3a 100644 --- a/actionwebservice/lib/action_web_service/scaffolding.rb +++ b/actionwebservice/lib/action_web_service/scaffolding.rb @@ -6,8 +6,7 @@ module ActionWebService class ScaffoldingError < ActionWebServiceError # :nodoc: end - def self.append_features(base) - super + def self.included(base) base.extend(ClassMethods) end |