Class: Jcsv::RBIPAddr

Inherits:
Filter
  • Object
show all
Defined in:
lib/filters.rb

Overview

Instance Attribute Summary

Attributes included from NextFilter

#last_filter, #next_filter

Instance Method Summary collapse

Methods included from NextFilter

#>>, #exec_next

Instance Method Details

#execute(value, context) ⇒ Object



213
214
215
216
217
# File 'lib/filters.rb', line 213

def execute(value, context)
  validateInputNotNull(value, context)
  value = IPAddr.new(value)
  exec_next(value, context)
end