Class: Dap::Filter::FilterFieldSplitArray

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



328
329
330
331
332
333
334
335
336
337
338
339
# File 'lib/dap/filter/simple.rb', line 328

def process(doc)
  self.opts.each_pair do |k,v|
    if doc.has_key?(k) and doc[k].respond_to?(:each)
      wcount = 1
      doc[k].each do |word|
        doc.merge!({ "#{k}.f#{wcount}" => word })
        wcount += 1
      end
    end
  end
 [ doc ]
end