Fluent::TextParser::ValuesParser
# File lib/fluent/parser.rb, line 361 def initialize super require 'csv' end
# File lib/fluent/parser.rb, line 366 def call(text) if block_given? yield values_map(CSV.parse_line(text)) else return values_map(CSV.parse_line(text)) end end
[Validate]
Generated with the Darkfish Rdoc Generator 2.