class Rake::PseudoStatus

:nodoc: all
Exit status class for times the system just gives us a nil.
#

def >>(n)

def >>(n)
  to_i >> n
end

def exited?

def exited?
  true
end

def initialize(code=0)

def initialize(code=0)
  @exitstatus = code
end

def stopped?

def stopped?
  false
end

def to_i

def to_i
  @exitstatus << 8
end