Method: Gtk.method_missing

Defined in:
lib/gtk3.rb

.method_missing(name, *args, &block) ⇒ Object



48
49
50
51
52
53
54
55
# File 'lib/gtk3.rb', line 48

def method_missing(name, *args, &block)
  init()
  if respond_to?(name)
    __send__(name, *args, &block)
  else
    super
  end
end