Module: ZTK::DSL::Core::Actions Private
- Defined in:
- lib/ztk/dsl/core/actions.rb,
lib/ztk/dsl/core/actions/find.rb,
lib/ztk/dsl/core/actions/timestamps.rb
Overview
This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.
Defined Under Namespace
Modules: Find, Timestamps
Class Method Summary (collapse)
- + (Object) included(base) private
Class Method Details
+ (Object) included(base)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
9 10 11 12 13 14 |
# File 'lib/ztk/dsl/core/actions.rb', line 9 def self.included(base) base.class_eval do base.send(:include, ZTK::DSL::Core::Actions::Find) base.send(:include, ZTK::DSL::Core::Actions::Timestamps) end end |