Class: BrewOutdatedFormatter::TSVFormatter

Inherits:
Formatter
  • Object
show all
Defined in:
lib/brew_outdated_formatter/formatter/tsv_formatter.rb

Overview

Formatter for TSV

Constant Summary

Constants inherited from Formatter

Formatter::COLUMNS, Formatter::CURRENT_REGEXP, Formatter::FORMULA_REGEXP, Formatter::INSTALLED_REGEXP, Formatter::PINNED_REGEXP

Instance Method Summary collapse

Methods inherited from Formatter

#initialize, #read_stdin

Constructor Details

This class inherits a constructor from BrewOutdatedFormatter::Formatter

Instance Method Details

#convertObject



7
8
9
10
11
12
13
14
15
# File 'lib/brew_outdated_formatter/formatter/tsv_formatter.rb', line 7

def convert
  text = CSV.generate(force_quotes: true, col_sep: "\t") do |tsv|
    tsv << COLUMNS
    @outdated_formulas.each do |formula|
      tsv << formula.values
    end
  end
  text.chomp
end