module Glimmer::Gtk

Proxy for the original ::Gtk module (with the future option of enhancing its abilities)

Public Class Methods

method_missing(method_name, *args, &block) click to toggle source
Calls superclass method
# File lib/glimmer/gtk.rb, line 68
def method_missing(method_name, *args, &block)
  if ::Gtk.respond_to?(method_name, true)
    ::Gtk.send(method_name, *args, &block)
  else
    super
  end
end
respond_to?(method_name, *args) click to toggle source
Calls superclass method
# File lib/glimmer/gtk.rb, line 64
def respond_to?(method_name, *args)
  super || ::Gtk.respond_to?(method_name, *args)
end