Class: LicenseFinder::TextReport

Inherits:
CsvReport show all
Defined in:
lib/license_finder/reports/text_report.rb

Constant Summary collapse

COMMA_SEP =
", "

Constants inherited from CsvReport

CsvReport::AVAILABLE_COLUMNS, CsvReport::MISSING_DEPENDENCY_TEXT

Instance Method Summary collapse

Methods inherited from CsvReport

#to_s

Methods inherited from Report

of

Constructor Details

#initialize(dependencies, options = {}) ⇒ TextReport

Returns a new instance of TextReport.



5
6
7
# File 'lib/license_finder/reports/text_report.rb', line 5

def initialize(dependencies, options={})
  super(dependencies, options.merge(columns: %w[name version licenses]))
end