Sha256: fb8a311ffd4cf69b0dac7dfa9a27f2b66e1d81a218b71f2b861f186d145a528f
Contents?: true
Size: 240 Bytes
Versions: 45
Compression:
Stored size: 240 Bytes
Contents
module LicenseFinder class License class AnyMatcher def initialize(*matchers) @matchers = matchers end def matches_text?(text) @matchers.any? { |m| m.matches_text? text } end end end end
Version data entries
45 entries across 45 versions & 1 rubygems