Sha256: 62336b4e6ef27a55648c3791b2f01c139023e9a2365e6e8930d48bcdce7cf1c5
Contents?: true
Size: 910 Bytes
Versions: 6
Compression:
Stored size: 910 Bytes
Contents
# frozen_string_literal: true require 'set' module LicenseFinder class PipPackage < Package LICENSE_FORMAT = /^License.*::\s*(.*)$/ INVALID_LICENSES = ['', 'UNKNOWN'].to_set def self.license_names_from_spec(spec) license = spec['license'].to_s.strip return [license] unless INVALID_LICENSES.include?(license) spec .fetch('classifiers', []) .select { |c| c =~ LICENSE_FORMAT } .map { |c| c.gsub(LICENSE_FORMAT, '\1') } end def initialize(name, version, spec, options = {}) super( name, version, options.merge( authors: spec['author'], summary: spec['summary'], description: spec['description'], homepage: spec['home_page'], spec_licenses: self.class.license_names_from_spec(spec) ) ) end def package_manager 'Pip' end end end
Version data entries
6 entries across 6 versions & 1 rubygems