class Diecut::ReportBuilders::InvalidPlugin

Public Instance Methods

add(*args) click to toggle source
# File lib/diecut/report-builders/invalid-plugin.rb, line 17
def add(*args)
  report.add(*args)
end
collect() click to toggle source
# File lib/diecut/report-builders/invalid-plugin.rb, line 14
def collect
end
other_advice() click to toggle source
# File lib/diecut/report-builders/invalid-plugin.rb, line 25
      def other_advice
        <<-EOA
        The plugins above had unrecoverable issues while being defined. They
        should be fixed, or not included during generation.
        EOA
      end
other_summary() click to toggle source
# File lib/diecut/report-builders/invalid-plugin.rb, line 21
def other_summary
  "There were problems defining plugins"
end
report_fields() click to toggle source
# File lib/diecut/report-builders/invalid-plugin.rb, line 10
def report_fields
  ["Plugin name", "Problem description"]
end
report_name() click to toggle source
# File lib/diecut/report-builders/invalid-plugin.rb, line 6
def report_name
  "General plugin health"
end