Method: Lhj::UI.method_missing
- Defined in:
- lib/lhj/ui/ui.rb
.method_missing(method_sym, *args, &_block) ⇒ Object
11 12 13 14 15 16 17 18 |
# File 'lib/lhj/ui/ui.rb', line 11 def method_missing(method_sym, *args, &_block) # not using `responds` because we don't care about methods like .to_s and so on require_relative 'interface' interface_methods = Lhj::Interface.instance_methods - Object.instance_methods UI.user_error!("Unknown method '#{method_sym}', supported #{interface_methods}") unless interface_methods.include?(method_sym) self.ui_object.send(method_sym, *args) end |