Class: Tdc::DataDefinition
- Inherits:
-
Object
- Object
- Tdc::DataDefinition
show all
- Defined in:
- lib/tdc/data_definition.rb
Overview
Knows how to read data definitions from the specified path elements.
Instance Method Summary
collapse
Instance Method Details
#read(*_path_elements) ⇒ Object
8
9
10
|
# File 'lib/tdc/data_definition.rb', line 8
def read(*_path_elements)
raise MissingOverrideError, "Implement the 'read' method"
end
|
#with_indifferent_access ⇒ Object
12
13
14
|
# File 'lib/tdc/data_definition.rb', line 12
def with_indifferent_access
self.extend(Tdc::WithIndifferentAccessDecorator)
end
|