Module: DynamicActiveModel::Setup
- Defined in:
- lib/dynamic-active-model/setup.rb
Overview
The Setup module provides configuration and initialization methods for DynamicActiveModel. It allows you to:
-
Configure database connections
-
Specify tables to skip
-
Define custom relationships
-
Set up model extensions
Defined Under Namespace
Modules: ClassMethods
Class Method Summary collapse
-
.included(base) ⇒ Object
Extends the including module with configuration methods.
Class Method Details
.included(base) ⇒ Object
Extends the including module with configuration methods
30 31 32 33 |
# File 'lib/dynamic-active-model/setup.rb', line 30 def self.included(base) base.extend InheritanceHelper::Methods base.extend ClassMethods end |