Support for the Ruby 2.4 series has ended. See here for reference.
![show/hide quicksearch [+]](../images/find.png)
Software Package Data Exchange (SPDX) standard open-source software license identifiers
 
               # File rubygems/util/licenses.rb, line 331
def self.match?(license)
  !REGEXP.match(license).nil?
end
             
             
               # File rubygems/util/licenses.rb, line 335
def self.suggestions(license)
  by_distance = IDENTIFIERS.group_by do |identifier|
    levenshtein_distance(identifier, license)
  end
  lowest = by_distance.keys.min
  return unless lowest < license.size
  by_distance[lowest]
end