class Gsk::Loader
Public Instance Methods
Source
# File lib/gsk4/loader.rb, line 24 def load self.version = "4.0" super("Gsk") end
Calls superclass method
Private Instance Methods
Source
# File lib/gsk4/loader.rb, line 34 def field_name(field_info, klass) case klass.name when "Gsk::RoundedRect" if field_info.name == "corner" "corners" else super end else super end end
Calls superclass method
Source
# File lib/gsk4/loader.rb, line 30 def post_load(repository, namespace) require_relative "rounded-rect" end