class Shelly::CLI::Command

Public Class Methods

new(*) click to toggle source
Calls superclass method
# File lib/shelly/cli/command.rb, line 17
def initialize(*)
  super
  check_for_home
  if options[:help]
    help(self.class.send(:retrieve_task_name, ARGV.dup))
    exit(0)
  end
end