Module: DSL

Instance Method Summary collapse

Instance Method Details

#OLD_method_missing(sym, *args) ⇒ Object

using this resulted in time lost in bedebugging why some method was not working.



34
35
36
37
38
39
40
41
42
# File 'lib/rbcurse/rwidget.rb', line 34

def OLD_method_missing(sym, *args)
  $log.debug "METHOD MISSING : #{sym} #{self} "
  #if "#{sym}"[-1].chr=="="
  #  sym = "#{sym}"[0..-2]
  #else
  self.class.dsl_accessor sym
  #end
  send(sym, *args)
end