Class: Dap::Filter::FilterSplitWord

Inherits:
Object
  • Object
show all
Includes:
Base
Defined in:
lib/dap/filter/simple.rb

Instance Attribute Summary

Attributes included from Base

#name, #opts

Instance Method Summary collapse

Methods included from Base

#initialize

Instance Method Details

#process(doc) ⇒ Object



229
230
231
232
233
234
235
236
237
238
239
# File 'lib/dap/filter/simple.rb', line 229

def process(doc)
  lines = [ ]
  self.opts.each_pair do |k,v|
    if doc.has_key?(k)
      doc[k].to_s.split(/\W/).each do |line|
        lines << doc.merge({ "#{k}.word" => line })
      end
    end
  end
 lines.length == 0 ? [ doc ] : [ lines ]
end