module GooCanvas

Public Class Methods

const_missing(name) click to toggle source
Calls superclass method
# File lib/alexandria/ui/barcode_animation.rb, line 30
def const_missing(name)
  init
  if const_defined?(name)
    const_get(name)
  else
    super
  end
end
init() click to toggle source
# File lib/alexandria/ui/barcode_animation.rb, line 39
def init
  class << self
    remove_method(:init)
    remove_method(:const_missing)
  end
  loader = GObjectIntrospection::Loader.new(self)
  loader.load("GooCanvas")
end