Sha256: c44f6dd888958b04c1a69ba3eebdf3e27a1fbad9caff68327bd04cc153bb18db
Contents?: true
Size: 1.89 KB
Versions: 3
Compression:
Stored size: 1.89 KB
Contents
# frozen_string_literal: true module Licensed module Commands class Notices < Command # Create a reporter to use during a command run # # options - The options the command was run with # # Raises a Licensed::Reporters::CacheReporter def create_reporter(options) Licensed::Reporters::NoticesReporter.new end protected # Run the command for all enumerated dependencies found in a dependency source, # recording results in a report. # Enumerating dependencies in the source is skipped if a :sources option # is provided and the evaluated `source.class.type` is not in the :sources values # # app - The application configuration for the source # source - A dependency source enumerator # # Returns whether the command succeeded for the dependency source enumerator def run_source(app, source) super do |report| next if Array(options[:sources]).empty? next if options[:sources].include?(source.class.type) report.warnings << "skipped source" :skip end end # Load stored dependency record data to add to the notices report. # # app - The application configuration for the dependency # source - The dependency source enumerator for the dependency # dependency - An application dependency # report - A report hash for the command to provide extra data for the report output. # # Returns true. def evaluate_dependency(app, source, dependency, report) filename = app.cache_path.join(source.class.type, "#{dependency.name}.#{DependencyRecord::EXTENSION}") report["cached_record"] = Licensed::DependencyRecord.read(filename) if !report["cached_record"] report.warnings << "expected cached record not found at #{filename}" end true end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
licensed-2.12.2 | lib/licensed/commands/notices.rb |
licensed-2.12.1 | lib/licensed/commands/notices.rb |
licensed-2.12.0 | lib/licensed/commands/notices.rb |