Module: Ecoportal::API::Common::Content::DoubleModel::Attributable::Nesting
- Extended by:
- Includer
- Defined in:
- lib/ecoportal/api/common/content/double_model/attributable/nesting.rb,
lib/ecoportal/api/common/content/double_model/attributable/nesting/keyable.rb,
lib/ecoportal/api/common/content/double_model/attributable/nesting/embeddable.rb,
lib/ecoportal/api/common/content/double_model/attributable/nesting/cascaded_callback.rb
Defined Under Namespace
Modules: CascadedCallback, ClassMethods, Embeddable, Keyable
Class Method Summary collapse
Methods included from Includer
Class Method Details
.included(base) ⇒ Object
15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
# File 'lib/ecoportal/api/common/content/double_model/attributable/nesting.rb', line 15 def included(base) super base.extend Content::ClassHelpers include_missing(base, DoubleModel::VarTracking) include_missing(base, DoubleModel::Modifiers) include_missing(base, Attributable::Base) include_missing(base, Keyable) include_missing(base, CascadedCallback) include_missing(base, Embeddable) base.extend ClassMethods end |