Sha256: f36b649410a187f65887bb31fa3ed6951992cd8e18bf77fbaae61506a5b06491
Contents?: true
Size: 343 Bytes
Versions: 46
Compression:
Stored size: 343 Bytes
Contents
# frozen_string_literal: true module LicenseFinder class ManualPackage < Package def ==(other) eql? other end def eql?(other) name == other.name end def hash name.hash end private def licenses_from_spec Set.new end def licenses_from_files Set.new end end end
Version data entries
46 entries across 46 versions & 2 rubygems