Class: Plumb::Build
Instance Attribute Summary collapse
-
#children ⇒ Object
readonly
Returns the value of attribute children.
Instance Method Summary collapse
- #call(result) ⇒ Object
-
#initialize(type, factory_method: :new, &block) ⇒ Build
constructor
A new instance of Build.
Methods included from Composable
#>>, #[], #as_node, #build, #check, #defer, #generate, included, #invalid, #invoke, #match, #metadata, #not, #pipeline, #policy, #static, #to_json_schema, #to_s, #transform, #value, wrap, #|
Methods included from Callable
Constructor Details
#initialize(type, factory_method: :new, &block) ⇒ Build
Returns a new instance of Build.
11 12 13 14 15 16 |
# File 'lib/plumb/build.rb', line 11 def initialize(type, factory_method: :new, &block) @type = type @block = block || ->(value) { type.send(factory_method, value) } @children = [type].freeze freeze end |
Instance Attribute Details
#children ⇒ Object (readonly)
Returns the value of attribute children.
9 10 11 |
# File 'lib/plumb/build.rb', line 9 def children @children end |
Instance Method Details
#call(result) ⇒ Object
18 |
# File 'lib/plumb/build.rb', line 18 def call(result) = result.valid(@block.call(result.value)) |