module Groupie::CoreExt::String

This module monkey patches String to respond to tokenize

Public Instance Methods

tokenize() click to toggle source
# File lib/groupie/core_ext/string.rb, line 7
def tokenize
  warn "Please use Groupie.tokenize instead of String#tokenize (from #{caller(1..1).first})"
  Groupie.tokenize(self)
end