class Licensed::Reporters::Reporter
Attributes
Public Class Methods
Source
# File lib/licensed/reporters/reporter.rb, line 7 def initialize(shell = Licensed::UI::Shell.new) @shell = shell end
Public Instance Methods
Source
# File lib/licensed/reporters/reporter.rb, line 29 def begin_report_app(app, report) end
Report
the beginning of an app evaluation
app - An application configuration report - A report object containing information about the app evaluation
Source
# File lib/licensed/reporters/reporter.rb, line 15 def begin_report_command(command, report) end
Report
the beginning of a command evaluation
command - The command being run report - A report object containing information about the command run
Source
# File lib/licensed/reporters/reporter.rb, line 57 def begin_report_dependency(dependency, report) end
Report
the beginning of a dependency evaluation
dependency - An application dependency source - A report object containing information about the dependency evaluation
Source
# File lib/licensed/reporters/reporter.rb, line 43 def begin_report_source(source, report) end
Report
the beginning of a source evaluation
source - A dependency source enumerator report - A report object containing information about the source evaluation
Source
# File lib/licensed/reporters/reporter.rb, line 36 def end_report_app(app, report) end
Report
the end of an app evaluation
app - An application configuration report - A report object containing information about the app evaluation
Source
# File lib/licensed/reporters/reporter.rb, line 22 def end_report_command(command, report) end
Report
the end of a command evaluation
command - The command being run report - A report object containing information about the command run
Source
# File lib/licensed/reporters/reporter.rb, line 64 def end_report_dependency(dependency, report) end
Report
the end of a dependency evaluation
dependency - An application dependency source - A report object containing information about the dependency evaluation
Source
# File lib/licensed/reporters/reporter.rb, line 50 def end_report_source(source, report) end
Report
the end of a source evaluation
source - A dependency source enumerator report - A report object containing information about the source evaluation