Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/fuzzy_strings.rb

Overview

extend String

Instance Method Summary collapse

Instance Method Details

#fuzzy_match(other) ⇒ Object



203
204
205
206
# File 'lib/fuzzy_strings.rb', line 203

def fuzzy_match(other)
  fs = FuzzyStrings.new(self)
  fs.compare other
end