Class: FasterCSV::Row
- Inherits:
-
Object
- Object
- FasterCSV::Row
- Defined in:
- lib/dataload/loader.rb
Instance Method Summary collapse
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(sym, *args, &b) ⇒ Object
7 8 9 10 11 12 13 |
# File 'lib/dataload/loader.rb', line 7 def method_missing(sym,*args,&b) if self[sym.to_s] self[sym.to_s] else super(sym,*args,&b) end end |