Module: ActionWebService::Dispatcher
- Defined in:
- lib/action_web_service/dispatcher/abstract.rb,
lib/action_web_service/dispatcher/action_controller_dispatcher.rb
Overview
:nodoc:
Defined Under Namespace
Modules: ActionController, InstanceMethods Classes: DispatcherError
Class Method Summary collapse
-
.included(base) ⇒ Object
:nodoc:.
Class Method Details
.included(base) ⇒ Object
:nodoc:
8 9 10 11 12 |
# File 'lib/action_web_service/dispatcher/abstract.rb', line 8 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) end |