Module: ActionAnnotation::Annotations
- Included in:
- ActionController::Base
- Defined in:
- lib/action_annotation/annotations.rb
Overview
Include this module in your class to enable descriptions. Is already included in ActionController::Base.
See ActionAnnotation::Annotations::ClassMethods for more information.
Defined Under Namespace
Modules: ClassMethods, InstanceMethods
Class Method Summary collapse
-
.included(base) ⇒ Object
:nodoc:.
Class Method Details
.included(base) ⇒ Object
:nodoc:
14 15 16 17 |
# File 'lib/action_annotation/annotations.rb', line 14 def self.included(base) # :nodoc: base.extend(ClassMethods) base.send :include, InstanceMethods end |