Class: Tagger::SimpleTagger

Inherits:
NWordTagger show all
Defined in:
ext/word_tagger/tagger.rb

Instance Method Summary collapse

Instance Method Details

#execute(text) ⇒ Object



4
5
6
# File 'ext/word_tagger/tagger.rb', line 4

def execute( text )
  super( text.gsub(/[^\w]/,' ') )
end