Module: ActiveWarehouse::HierarchicalDimension

Included in:
Dimension
Defined in:
lib/active_warehouse/dimension/hierarchical_dimension.rb

Overview

Implements a hierarchical dimension. Including the acts_as_hierarchical_dimension directive in a dimension will add methods for accessing the parent and children of any node in the hierarchy.

Defined Under Namespace

Modules: ClassMethods, InstanceMethods

Class Method Summary collapse

Class Method Details

.included(base) ⇒ Object

:nodoc



5
6
7
# File 'lib/active_warehouse/dimension/hierarchical_dimension.rb', line 5

def self.included(base) #:nodoc
  base.extend(ClassMethods)
end