Exception: SimpleCommander::CLI::UndefinedSCPath

Inherits:
StandardError
  • Object
show all
Defined in:
lib/simple_commander/cli.rb

Instance Method Summary collapse

Constructor Details

#initializeUndefinedSCPath

Returns a new instance of UndefinedSCPath.



18
19
20
21
22
23
24
25
26
27
# File 'lib/simple_commander/cli.rb', line 18

def initialize
	msg = <<-END 
You need to set a path to commander
use simple_commander init <path> or cd to
the folder you want to use an repo for your 
simple commander scripts  and run 
simple_commander init
	END
	super(msg)
end