Method: EdifactConverter::EmptyHandler#method_missing
- Defined in:
- lib/edifact_converter/empty_handler.rb
#method_missing(sym, *args, &block) ⇒ Object
11 12 13 14 15 |
# File 'lib/edifact_converter/empty_handler.rb', line 11 def method_missing(sym, *args, &block) if self.next_handler self.next_handler.send(sym, *args, &block) end end |