Class: Hotdog::Formatters::Ltsv

Inherits:
BaseFormatter show all
Defined in:
lib/hotdog/formatters/ltsv.rb

Instance Method Summary collapse

Instance Method Details

#format(result, options = {}) ⇒ Object



6
7
8
9
10
11
12
13
14
15
16
17
18
19
# File 'lib/hotdog/formatters/ltsv.rb', line 6

def format(result, options={})
  result = prepare(result)
  if options[:fields]
    result.map { |row|
      options[:fields].zip(row).map { |(field, column)|
        "#{field}:#{column}"
      }.join("\t")
    }.join(newline) + newline
  else
    result.map { |row|
      row.join("\t")
    }.join(newline) + newline
  end
end