class Graphene::Loader
Public Instance Methods
Source
# File lib/graphene1/loader.rb, line 19 def load self.version = "1.0" super("Graphene") end
Calls superclass method
Private Instance Methods
Source
# File lib/graphene1/loader.rb, line 25 def post_load(repository, namespace) require_relative "point" require_relative "rect" require_relative "size" require_relative "vec2" end
Source
# File lib/graphene1/loader.rb, line 32 def rubyish_method_name(function_info, options={}) case function_info.name when "is_2d" "two_dimentional?" else super end end
Calls superclass method