class Aruba::CommandMonitor::DefaultLastCommandStarted

def empty?

def empty?
  true
end

def method_missing(*)

def method_missing(*)
  raise NoCommandHasBeenStartedError, "No last command started available"
end

def respond_to_missing?(*)

def respond_to_missing?(*)
  true
end