module ClutterGst
Constants
- LOG_DOMAIN
Public Class Methods
const_missing(name)
click to toggle source
Calls superclass method
# File lib/clutter-gst.rb, line 33 def const_missing(name) init if const_defined?(name) const_get(name) else super end end
init(argv=[])
click to toggle source
# File lib/clutter-gst.rb, line 42 def init(argv=[]) class << self remove_method(:init) remove_method(:const_missing) end Gst.init if Gst.respond_to?(:init) Clutter.init if Clutter.respond_to?(:init) loader = Loader.new(self, argv) loader.load("ClutterGst") end