Class: Licensed::Reporters::CacheReporter
- Defined in:
- lib/licensed/reporters/cache_reporter.rb
Instance Method Summary collapse
-
#begin_report_app(app, report) ⇒ Object
Reports the start of caching records for an app.
-
#begin_report_source(source, report) ⇒ Object
Reports the start of caching records for a dependency source.
-
#end_report_dependency(dependency, report) ⇒ Object
Reports whether the dependency’s record was cached or reused.
-
#end_report_source(source, report) ⇒ Object
Reports warnings and errors found while evaluating the dependency source.
Methods inherited from Reporter
#begin_report_command, #begin_report_dependency, #end_report_app, #end_report_command, #initialize
Constructor Details
This class inherits a constructor from Licensed::Reporters::Reporter
Instance Method Details
#begin_report_app(app, report) ⇒ Object
Reports the start of caching records for an app
app - An application configuration report - A report containing information about the app evaluation
9 10 11 |
# File 'lib/licensed/reporters/cache_reporter.rb', line 9 def begin_report_app(app, report) shell.info "Caching dependency records for #{app["name"]}" end |
#begin_report_source(source, report) ⇒ Object
Reports the start of caching records for a dependency source
source - A dependency source enumerator report - A report containing information about the source evaluation
17 18 19 |
# File 'lib/licensed/reporters/cache_reporter.rb', line 17 def begin_report_source(source, report) shell.info " #{source.class.type}" end |
#end_report_dependency(dependency, report) ⇒ Object
Reports whether the dependency’s record was cached or reused.
dependency - An application dependency report - A report containing information about the dependency evaluation
65 66 67 68 69 70 71 72 73 |
# File 'lib/licensed/reporters/cache_reporter.rb', line 65 def end_report_dependency(dependency, report) if report.errors.any? shell.error " Error #{dependency.name} (#{dependency.version})" elsif report["cached"] shell.info " Caching #{dependency.name} (#{dependency.version})" else shell.info " Using #{dependency.name} (#{dependency.version})" end end |
#end_report_source(source, report) ⇒ Object
Reports warnings and errors found while evaluating the dependency source
source - A dependency source enumerator report - A report containing information about the source evaluation
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
# File 'lib/licensed/reporters/cache_reporter.rb', line 25 def end_report_source(source, report) warning_reports = report.all_reports.select { |r| r.warnings.any? }.to_a if warning_reports.any? shell.newline shell.warn " * Warnings:" warning_reports.each do |r| = r.map { |k, v| "#{k}: #{v}" }.join(", ") shell.warn " * #{r.name}" shell.warn " #{}" unless .empty? r.warnings.each do |warning| shell.warn " - #{warning}" end shell.newline end end errored_reports = report.all_reports.select { |r| r.errors.any? }.to_a if errored_reports.any? shell.newline shell.error " * Errors:" errored_reports.each do |r| = r.map { |k, v| "#{k}: #{v}" }.join(", ") shell.error " * #{r.name}" shell.error " #{}" unless .empty? r.errors.each do |error| shell.error " - #{error}" end shell.newline end else shell.confirm " * #{report.reports.size} #{source.class.type} dependencies" end end |