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 invokingrake
from the command line, aRake::Application
object is created and run. - RakeFileUtils
- Task
Public Instance Methods
Source
# File lib/rake/contrib/sys.rb 183 def with_verbose(v) 184 oldverbose = $verbose 185 $verbose = v 186 yield 187 ensure 188 $verbose = oldverbose 189 end