class Fission::Command

def initialize(args=[])

Fission::Command.new ['foo', 'bar']

Examples

variable.
args - Array of arguments which will be assigned to the args instance

from.
intended to be used as a base class for other command classes to inherit
Internal: Initializes a new Command with some basic setup. This is
def initialize(args=[])
  ui
  @options = OpenStruct.new
  @args = args
end