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