class CmdBase

Base command

Constants

ALIASES
ARGUMENTS
DESCRIPTION
NAME

Public Class Methods

new(shell) click to toggle source
# File lib/shell.rb, line 69
def initialize(shell)
  @shell = shell
end

Public Instance Methods

aliases() click to toggle source
# File lib/shell.rb, line 79
def aliases
  self.class::ALIASES
end
arguments() click to toggle source
# File lib/shell.rb, line 83
def arguments
  self.class::ARGUMENTS
end
description() click to toggle source
# File lib/shell.rb, line 87
def description
  self.class::DESCRIPTION
end
exec(args) click to toggle source
# File lib/shell.rb, line 73
def exec(args); end
name() click to toggle source
# File lib/shell.rb, line 75
def name
  self.class::NAME
end