class String

extend String

Public Instance Methods

fuzzy_match(other) click to toggle source
# File lib/fuzzy_strings.rb, line 203
def fuzzy_match(other)
  fs = FuzzyStrings.new(self)
  fs.compare other
end