Sha256: c10d7bbfe86e4244a4ba6472cca065deced138ec702f49a141debc793c6f8339
Contents?: true
Size: 1.3 KB
Versions: 11
Compression:
Stored size: 1.3 KB
Contents
require 'license_finder/package_utils/activation' module LicenseFinder Licensing = Struct.new(:package, :decided_licenses, :licenses_from_spec, :license_files) do # Implements the algorithm for choosing the right set of licenses from # among the various sources of licenses we know about. In order of # priority, licenses come from decisions, package specs, or package files. def activations if activations_from_decisions.any? then activations_from_decisions elsif activations_from_spec.any? then activations_from_spec elsif activations_from_files.any? then activations_from_files else [default_activation] end end def activations_from_decisions @afd ||= decided_licenses .map { |license| Activation::FromDecision.new(package, license) } end def activations_from_spec @afs ||= licenses_from_spec .map { |license| Activation::FromSpec.new(package, license) } end def activations_from_files @aff ||= license_files .group_by(&:license) .map { |license, files| Activation::FromFiles.new(package, license, files) } end def default_activation default_license = License.find_by_name nil Activation::None.new(package, default_license) end end end
Version data entries
11 entries across 11 versions & 1 rubygems