class SimpleCommander::CLI::UndefinedSCPath

Public Class Methods

new() click to toggle source
Calls superclass method
# 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