Minor fix for compatibility with Ruby versions that don't understand
[mailvisa.git] / tokenize.rb
bloba370955bdb8ad0f455d1391cb1d8504ae3e50c4c
1 ## Split a string into tokens
2 def tokenize str
3         str.scan /\w+/
4 end