class Glue::CSVReporter

Attributes

format[RW]
name[RW]

Public Class Methods

new() click to toggle source
# File lib/glue/reporters/csv_reporter.rb, line 10
def initialize()
  @name = "CSVReporter"
  @format = :to_csv
end

Public Instance Methods

out(finding) click to toggle source
# File lib/glue/reporters/csv_reporter.rb, line 15
def out(finding)
  finding.to_csv
end