Sha256: d8a4cf9d675cfda618597b11a40bba7093b584edf7406fe0bcec0d8b0cec3008
Contents?: true
Size: 1.35 KB
Versions: 4
Compression:
Stored size: 1.35 KB
Contents
# frozen_string_literal: true module Spandx module Spdx class Catalogue include Enumerable def initialize(catalogue = {}) @catalogue = catalogue end def [](id) identity_map[id] end def version catalogue[:licenseListVersion] end def each licenses.each do |license| yield license end end class << self def latest(gateway: ::Spandx::Spdx::Gateway.new) new(gateway.fetch) end def from_json(json) new(JSON.parse(json, symbolize_names: true)) end def from_file(path) from_json(IO.read(path)) end def from_git from_json(Spandx.git[:spdx].read('json/licenses.json')) end def default from_git end def empty @empty ||= new(licenses: []) end end private attr_reader :catalogue def licenses @licenses ||= identity_map.values.sort end def present?(item) item && !item.empty? end def identity_map @identity_map ||= catalogue.fetch(:licenses, []).each_with_object({}) do |hash, memo| license = License.new(hash) memo[license.id] = license if present?(license.id) end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
spandx-0.13.3 | lib/spandx/spdx/catalogue.rb |
spandx-0.13.2 | lib/spandx/spdx/catalogue.rb |
spandx-0.13.1 | lib/spandx/spdx/catalogue.rb |
spandx-0.13.0 | lib/spandx/spdx/catalogue.rb |