class Diecut::ReportBuilders::Exceptions

Public Instance Methods

add(*args) click to toggle source
# File lib/diecut/report-builders/exception-report.rb, line 17
def add(*args)
  report.add(*args)
end
collect() click to toggle source
# File lib/diecut/report-builders/exception-report.rb, line 14
def collect
end
fail_summary() click to toggle source
# File lib/diecut/report-builders/exception-report.rb, line 21
def fail_summary
  "Exceptions were raised during the kind definition process"
end
other_advice() click to toggle source
# File lib/diecut/report-builders/exception-report.rb, line 25
      def other_advice
        <<-EOA
        Exceptions were raised while defining plugins for generation. Those need to be fixed.
        EOA
      end
report_fields() click to toggle source
# File lib/diecut/report-builders/exception-report.rb, line 10
def report_fields
  ["Exception class", "message", "source line"]
end
report_name() click to toggle source
# File lib/diecut/report-builders/exception-report.rb, line 6
def report_name
  "Exceptions raised during definition"
end