Module: ActionWebService::Invocation
- Defined in:
- lib/action_web_service/invocation.rb
Overview
:nodoc:
Defined Under Namespace
Modules: ClassMethods, InstanceMethods Classes: InvocationError
Class Method Summary collapse
-
.included(base) ⇒ Object
:nodoc:.
Class Method Details
.included(base) ⇒ Object
:nodoc:
7 8 9 10 11 12 13 14 |
# File 'lib/action_web_service/invocation.rb', line 7 def self.included(base) # :nodoc: base.extend(ClassMethods) base.send(:include, ActionWebService::Invocation::InstanceMethods) base.class_attribute :included_intercepted_methods, :excluded_intercepted_methods base.included_intercepted_methods = base.excluded_intercepted_methods = {} base.class_attribute :before_invocation_interceptors_attr, :after_invocation_interceptors_attr base.before_invocation_interceptors_attr = after_invocation_interceptors_attr = [] end |