class Object

Constants

CLEAN
CLOBBER
FileCreationTask
FileList

Some top level Constants.

FileTask
HostInfo

Configuration information about an upload host system.

  • name

    Name of host system.

  • webdir

    Base directory for the web information for the application. The application name (APP) is appended to this directory before using.

  • pkgdir

    Directory on the host system where packages can be placed.

RAKEVERSION
RakeApp

Rake main application object. When invoking rake from the command line, a Rake::Application object is created and run.

RakeFileUtils
Task

Public Instance Methods

with_verbose(v) { || ... } click to toggle source
# File lib/rake/contrib/sys.rb, line 183
def with_verbose(v)
  oldverbose = $verbose
  $verbose = v
  yield
ensure
  $verbose = oldverbose
end