Class: Wukong::Processor::ToInspect

Inherits:
Serializer show all
Defined in:
lib/wukong/widget/serializers.rb

Overview

A widget for serializing inputs to Ruby's inspect format.

Examples:

Serializing to Ruby's inspect format at the end of a data flow


Wukong.dataflow(:emits_inspected) do
  ... | to_inspect
end

Constant Summary

Constants inherited from Wukong::Processor

SerializerError

Instance Method Summary collapse

Methods inherited from Serializer

#handle_error

Methods inherited from Wukong::Processor

configure, consumes, description, #expected_record_type, #expected_serialization, #finalize, #perform_action, produces, #receive_action, #setup, #stop, valid_serializer?, validate_and_set_serialization

Methods included from Logging

included

Methods included from Hanuman::StageClassMethods

#builder, #label, #register, #set_builder

Instance Method Details

#process(record) {|inspected| ... } ⇒ Object

Yields the input record(s) passed through Ruby's inspect.

Parameters:

  • (Array<Object>)

Yields:

  • (inspected)

Yield Parameters:



275
276
277
# File 'lib/wukong/widget/serializers.rb', line 275

def process(record)
  yield record.inspect
end