Method: Gtk.const_missing

Defined in:
lib/gtk3.rb

.const_missing(name) ⇒ Object



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

def const_missing(name)
  init()
  if const_defined?(name)
    const_get(name)
  else
    super
  end
end