class Pipeline::TextReporter

Attributes

format[RW]
name[RW]

Public Class Methods

new() click to toggle source
# File lib/pipeline/reporters/text_reporter.rb, line 10
def initialize()
  @name = "TextReporter"  
  @format = :to_s
end

Public Instance Methods

out(finding) click to toggle source
# File lib/pipeline/reporters/text_reporter.rb, line 15
def out(finding)
  finding.to_string << "\n"
end