class GdkPixbuf::Loader
Private Instance Methods
Source
# File lib/gdk_pixbuf2/loader.rb, line 38 def define_constant(name, info) if /PIXBUF_/ =~ name name = $POSTMATCH end super(name, info) end
Calls superclass method
Source
# File lib/gdk_pixbuf2/loader.rb, line 25 def post_load(repository, namespace) require_libraries end
Source
# File lib/gdk_pixbuf2/loader.rb, line 22 def pre_load(repository, namespace) end
Source
# File lib/gdk_pixbuf2/loader.rb, line 29 def require_libraries require "gdk_pixbuf2/pixbuf" require "gdk_pixbuf2/pixbuf-loader" require "gdk_pixbuf2/deprecated" require "gdk_pixbuf2/version" end
Source
# File lib/gdk_pixbuf2/loader.rb, line 45 def rubyish_method_name(function_info, options={}) name = function_info.name if name == "new_subpixbuf" "subpixbuf" else super end end
Calls superclass method