Sha256: 02d22b79586c55307039b49ca3074c6931237e55b3572a922cc99305bce5edd7
Contents?: true
Size: 1.48 KB
Versions: 1
Compression:
Stored size: 1.48 KB
Contents
module LicenseFinder class License class << self def all @all ||= Definitions.all end def find_by_name(name) name ||= "unknown" all.detect { |l| l.matches_name? name } || Definitions.build_unrecognized(name) end def find_by_text(text) all.detect { |l| l.matches_text? text } end end def initialize(settings) @short_name = settings.fetch(:short_name) @pretty_name = settings.fetch(:pretty_name, short_name) @other_names = settings.fetch(:other_names, []) @url = settings.fetch(:url) @matcher = settings.fetch(:matcher) { Matcher.from_template(Template.named(short_name)) } end attr_reader :url def name pretty_name end def matches_name?(name) names.map(&:downcase).include? name.to_s.downcase end def matches_text?(text) matcher.matches_text?(text) end def eql?(other) name == other.name end def hash name.hash end private attr_reader :short_name, :pretty_name, :other_names attr_reader :matcher def names ([short_name, pretty_name] + other_names).uniq end end end require "license_finder/license/text" require "license_finder/license/template" require "license_finder/license/matcher" require "license_finder/license/header_matcher" require "license_finder/license/any_matcher" require "license_finder/license/none_matcher" require "license_finder/license/definitions"
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
license_finder-2.0.0.rc2 | lib/license_finder/license.rb |