lib/licensed/reporters/yaml_reporter.rb in licensed-3.1.0 vs lib/licensed/reporters/yaml_reporter.rb in licensed-3.2.0
- old
+ new
@@ -1,33 +1,31 @@
# frozen_string_literal: true
module Licensed
module Reporters
class YamlReporter < Reporter
- def report_run(command)
- super do |report|
- result = yield report
-
- report["apps"] = report.reports.map(&:to_h) if report.reports.any?
- shell.info sanitize(report.to_h).to_yaml
-
- result
- end
+ # Report all information from the command run to the shell as a YAML object
+ #
+ # command - The command being run
+ # report - A report object containing information about the command run
+ def end_report_command(command, report)
+ report["apps"] = report.reports.map(&:to_h) if report.reports.any?
+ shell.info sanitize(report.to_h).to_yaml
end
- def report_app(app)
- super do |report|
- result = yield report
- report["sources"] = report.reports.map(&:to_h) if report.reports.any?
- result
- end
+ # Add source report information to the app report hash
+ #
+ # app - An application configuration
+ # report - A report object containing information about the app evaluation
+ def end_report_app(app, report)
+ report["sources"] = report.reports.map(&:to_h) if report.reports.any?
end
- def report_source(source)
- super do |report|
- result = yield report
- report["dependencies"] = report.reports.map(&:to_h) if report.reports.any?
- result
- end
+ # Add dependency report information to the source report hash
+ #
+ # source - A dependency source enumerator
+ # report - A report object containing information about the source evaluation
+ def end_report_source(source, report)
+ report["dependencies"] = report.reports.map(&:to_h) if report.reports.any?
end
def sanitize(object)
case object
when String, TrueClass, FalseClass, Numeric