module I18n::Backend::InterpolationCompiler::Compiler

def tokenize(str)

tokenize("foo %{bar} baz %%{buz}") # => ["foo ", "%{bar}", " baz ", "%%{buz}"]
def tokenize(str)
  str.split(TOKENIZER)
end