lib/spdx.rb in spdx-1.1.0 vs lib/spdx.rb in spdx-1.1.1
- old
+ new
@@ -24,10 +24,10 @@
def self.fuzzy_match(name)
FuzzyMatch.new(names).find(name, must_match_at_least_one_word: true)
end
def self.stop_words
- %w(version software license the)
+ %w(version software the right)
end
def self.find_by_name(name)
match = SpdxLicenses.data.find{|k,v| v['name'] == name }
SpdxLicenses[match[0]] if match