Rake (software)
From Wikipedia, the free encyclopedia
Rake | |
Developer: | Jim Weirich |
---|---|
Latest release: | 0.7.1 / April 3, 2006 |
OS: | cross-platform |
Use: | Software development tools |
License: | MIT License |
Website: | rake.rubyforge.org |
Rake is a software build tool. It is similar to SCons and Make, but has a number of differences. The tool is written in the Ruby programming language and the Rakefiles (equivalent of Makefiles in make) use Ruby syntax. It was originated by Jim Weirich.
Rake uses Ruby's anonymous function blocks to define various tasks, allowing the use of the Ruby syntax. There's a library of common tasks available, for example, functions to do common file-manipulation tasks and a library to remove compiled files (the "clean" task). Like Make, Rake can also synthesize tasks based on patterns (for example, automatically building a file compilation task based on filename patterns).
[edit] External links
- Rake documentation
- RubyForge project page for Rake
- Building with Rake, Jim Weirich's 2003 RubyConf presentation
- Using the Rake build language by Martin Fowler