In Files

Parent

Rake::PseudoStatus

Exit status class for times the system just gives us a nil.

Attributes

exitstatus[R]

Public Class Methods

new(code=0) click to toggle source
# File lib/rake.rb, line 313
def initialize(code=0)
  @exitstatus = code
end

Public Instance Methods

>>(n) click to toggle source
# File lib/rake.rb, line 319
def >>(n)
  to_i >> n
end
exited?() click to toggle source
# File lib/rake.rb, line 325
def exited?
  true
end
stopped?() click to toggle source
# File lib/rake.rb, line 322
def stopped?
  false
end
to_i() click to toggle source
# File lib/rake.rb, line 316
def to_i
  @exitstatus << 8
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.