# File data/examples/ruby/Borges/SushiNet/StoreItem.rb, line 12
  def matches(aString)
    return @title =~ Regexp.new(Regexp.quote(aString), true) ||
           @description =~ Regexp.new(Regexp.quote(aString), true)
  end