Class: Winnow::Preprocessors::Plaintext

Inherits:
Winnow::Preprocessor show all
Defined in:
lib/winnow/preprocessors/plaintext.rb

Instance Method Summary collapse

Instance Method Details

#preprocess(str) ⇒ Object



4
5
6
# File 'lib/winnow/preprocessors/plaintext.rb', line 4

def preprocess(str)
  str.chars.each_with_index.to_a
end