class Tdc::DataDefinition

Knows how to read data definitions from the specified path elements.

Public Instance Methods

read(*_path_elements) click to toggle source
# File lib/tdc/data_definition.rb, line 6
def read(*_path_elements)
  raise MissingOverrideError, "Implement the 'read' method"
end
with_indifferent_access() click to toggle source
# File lib/tdc/data_definition.rb, line 10
def with_indifferent_access
  self.extend(Tdc::WithIndifferentAccessDecorator) # rubocop:disable Style/RedundantSelf
end