Class: Wukong::Processor::ToDelimited
- Inherits:
-
Serializer
- Object
- Hanuman::Stage
- Wukong::Processor
- Serializer
- Wukong::Processor::ToDelimited
- Defined in:
- lib/wukong/widget/serializers.rb
Overview
A widget for serializing inputs to a delimited format.
Constant Summary
Constants inherited from Wukong::Processor
Instance Attribute Summary
Attributes included from Hanuman::StageInstanceMethods
Instance Method Summary collapse
-
#process(record) {|delimited| ... } ⇒ Object
Yields the input
recordserialized in a delimited format..
Methods inherited from Serializer
Methods inherited from Wukong::Processor
configure, description, #finalize, #perform_action, #receive_action, #setup, #stop
Methods included from Logging
Methods inherited from Hanuman::Stage
Methods included from Hanuman::StageClassMethods
#builder, #label, #register, #set_builder
Methods included from Hanuman::StageInstanceMethods
#add_link, #linkable_name, #root
Instance Method Details
#process(record) {|delimited| ... } ⇒ Object
Yields the input record serialized in a delimited format..
220 221 222 223 224 225 226 227 228 |
# File 'lib/wukong/widget/serializers.rb', line 220 def process(record) begin delimited = record.map(&:to_s).join(delimiter) rescue => e # FIXME -- should we log here or what? return end yield delimited end |