Method: REXML::QuickPath.method_missing
- Defined in:
- lib/rexml/quickpath.rb
.method_missing(id, *args) ⇒ Object
214 215 216 217 218 219 220 |
# File 'lib/rexml/quickpath.rb', line 214 def QuickPath::method_missing( id, *args ) begin Functions.send( id.id2name, *args ) rescue Exception raise "METHOD: #{id.id2name}(#{args.join ', '})\n#{$!.message}" end end |