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



458
459
460
461
462
463
464
465
466
467
468
469
# File 'lib/dap/filter/simple.rb', line 458

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