Class
Constants
No documentation available
No documentation available
Software Package Data Exchange (SPDX) standard open-source software license identifiers
exception identifiers
No documentation available
Class Methods
lib/rubygems/util/licenses.rb
View on GitHub
# File tmp/rubies/ruby-3.0.5/lib/rubygems/util/licenses.rb, line 532
def self.match?(license)
!REGEXP.match(license).nil?
end
No documentation available
lib/rubygems/util/licenses.rb
View on GitHub
# File tmp/rubies/ruby-3.0.5/lib/rubygems/util/licenses.rb, line 536
def self.suggestions(license)
by_distance = LICENSE_IDENTIFIERS.group_by do |identifier|
levenshtein_distance(identifier, license)
end
lowest = by_distance.keys.min
return unless lowest < license.size
by_distance[lowest]
end
No documentation available