Class: Definition::Types::Each

Inherits:
Base
  • Object
show all
Defined in:
lib/definition/types/each.rb

Defined Under Namespace

Classes: Conformer

Instance Attribute Summary collapse

Attributes inherited from Base

#context, #name

Instance Method Summary collapse

Methods inherited from Base

#explain

Constructor Details

#initialize(name, definition:) ⇒ Each

Returns a new instance of Each.



11
12
13
14
# File 'lib/definition/types/each.rb', line 11

def initialize(name, definition:)
  self.item_definition = definition
  super(name)
end

Instance Attribute Details

#item_definitionObject

Returns the value of attribute item_definition.



9
10
11
# File 'lib/definition/types/each.rb', line 9

def item_definition
  @item_definition
end

Instance Method Details

#conform(value) ⇒ Object



16
17
18
# File 'lib/definition/types/each.rb', line 16

def conform(value)
  Conformer.new(self).conform(value)
end

#error_rendererObject



20
21
22
# File 'lib/definition/types/each.rb', line 20

def error_renderer
  ErrorRenderers::Leaf
end