ADC Home > Reference Library > Reference > Mac OS X > Mac OS X Man Pages
|
This document is a Mac OS X manual page. Manual pages are a command-line technology for providing documentation. You can view these manual pages locally using the man(1) command. These manual pages come from many different sources, and thus, have a variety of writing styles. For more information about the manual page format, see the manual page for manpages(5). |
ERB(1) BSD General Commands Manual ERB(1) NAME rake -- Ruby Make SYNOPSIS rake [-f rakefile] [options...] targets... DESCRIPTION Rake is a simple ruby(1) build program with capabilities similar to the regular make(1) command. Rake has the following features: oo Rakefiles (Rake's version of Makefiles) are completely defined in standard Ruby syntax. No XML files to edit. No quirky Makefile syntax to worry about (is that a tab or a space?). oo Users can specify tasks with prerequisites. oo Rake supports rule patterns to sythesize implicit tasks. oo Flexible FileLists that act like arrays but know about manipulating file names and paths. For more information about Rake you can use its ---help flag. There is also online documentation avail-able available able at "http://docs.rubyrake.org". SEE ALSO make(1) ruby(1) AUTHORS Rake is written by Jim Weirich <jim@weirichhouse.org> BSD February 27, 2006 BSD |
|