Module: Linen

Defined in:
lib/linen.rb

Defined Under Namespace

Classes: Abort, CLI, Handler, HandlerError, Plugin, PluginRegistry, Workspace, WorkspaceError

Constant Summary collapse

VERSION =
"0.8.3"
SVNRev =
%q$Rev: 431 $

Class Method Summary collapse

Class Method Details

.pluginsObject



37
38
39
# File 'lib/linen.rb', line 37

def self::plugins
	return Linen::PluginRegistry.instance
end

.start(handler = Linen::CLI) ⇒ Object



42
43
44
45
# File 'lib/linen.rb', line 42

def self::start( handler = Linen::CLI )
	Linen::Workspace.register_handler handler
	handler.start
end