class Bake::Base

def self.derive(path = [])

@parameter path [Array(String)] The command path.
Generate a base class for the specified path.
def self.derive(path = [])
	klass = Class.new(self)
	
	klass.const_set(:PATH, path)
	
	return klass
end