module Phlex::Kit

def included(mod)

When a kit is included in a module, we need to load all of its components.
def included(mod)
	constants.each { |c| const_get(c) if autoload?(c) }
	super
end