public
Description: A make-like build utility for Ruby.
Homepage: http://rake.rubyforge.org/
Clone URL: git://github.com/jimweirich/rake.git
rake /
name age message
file .gitignore Fri May 15 14:40:07 -0700 2009 Added .idea to ignore file. [jimweirich]
file .togglerc Mon May 18 05:12:51 -0700 2009 better toggle mode [jimweirich]
file CHANGES Sat Sep 05 18:57:10 -0700 2009 Merge branch 'env' * env: Added pivotal link... [jimweirich]
file MIT-LICENSE Sat Aug 12 11:03:45 -0700 2006 removed nested directory from CVS conversion. ... [jimweirich]
file README.rdoc Mon May 25 05:02:39 -0700 2009 More document tweaks. [jimweirich]
file Rakefile Wed May 27 06:34:09 -0700 2009 Fixed race condition in tests. [jimweirich]
file TODO Tue Oct 30 16:32:39 -0700 2007 Prettier inspect for tasks. git-svn-id: svn+s... [jimweirich]
directory bin/ Thu Dec 20 09:35:40 -0800 2007 updates for ruby 1.9 git-svn-id: svn+ssh://rub... [jimweirich]
directory doc/ Mon May 25 05:02:39 -0700 2009 More document tweaks. [jimweirich]
file install.rb Sun Apr 12 23:03:41 -0700 2009 apply mainline-merge-candidate to master [quix]
directory lib/ Sat Sep 05 18:57:10 -0700 2009 Merge branch 'env' * env: Added pivotal link... [jimweirich]
file rake.blurb Sat Aug 12 11:03:45 -0700 2006 removed nested directory from CVS conversion. ... [jimweirich]
file rake.gemspec Fri May 15 14:40:07 -0700 2009 Updated rakefile to not generate darkfish in th... [jimweirich]
directory rakelib/ Sun May 24 19:45:48 -0700 2009 Fixed problem with :verbose=>false in sh and ru... [jimweirich]
directory test/ Sat Sep 05 18:57:10 -0700 2009 Merge branch 'env' * env: Added pivotal link... [jimweirich]
README.rdoc

RAKE — Ruby Make

Supporting Rake version: 0.8.7.

This package contains Rake, a simple ruby build program with capabilities similar to make.

Rake has the following features:

  • 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?)
  • Users can specify tasks with prerequisites.
  • Rake supports rule patterns to synthesize implicit tasks.
  • Flexible FileLists that act like arrays but know about manipulating file names and paths.
  • A library of prepackaged tasks to make building rakefiles easier. For example, tasks for building tarballs, gems and RDoc output are provided.
  • Supports parallel execution of tasks.

Installation

Gem Installation

Download and install rake with the following.

   gem install rake

Normal Installation

You can download the source tarball of the latest version of Rake from

Extract the tarball and run

  % ruby install.rb

from its distribution directory.

Usage

Simple Example

First, you must write a "Rakefile" file which contains the build rules. Here’s a simple example:

  task :default => [:test]

  task :test do
    ruby "test/unittest.rb"
  end

This Rakefile has two tasks:

  • A task named "test", which - upon invocation - will run a unit test file in Ruby.
  • A task named "default". This task does nothing by itself, but it has exactly one dependency, namely the "test" task. Invoking the "default" task will cause Rake to invoke the "test" task as well.

Running the "rake" command without any options will cause it to run the "default" task in the Rakefile:

  % ls
  Rakefile     test/
  % rake
  (in /home/some_user/Projects/rake)
  ruby test/unittest.rb
  ....unit test output here...

Type "rake —help" for all available options.

More Information

Development

Source Repository

Rake is currently hosted at github. The github web page is github.com/jimweirich/rake. The public git clone URL is

  • git://github.com/jimweirich/rake.git

Running the Rake Test Suite

If you wish to run the unit and functional tests that come with Rake:

  • Install the ‘session’ gem in order to run the functional tests.
  • CD into the top project directory of rake.
  • Type one of the following:
       rake                  # If you have a version of rake installed
       ruby -Ilib bin/rake   # If you do not have a version of rake installed.
    

Issues and Bug Reports

Bugs, features requests and other issues can be logged at

You will need an account to before you can post issues. Register at onestepback.org/redmine/account/register. Or you can send me an email (at jim dot weirich at gmail dot com)

Online Resources

Rake References

Presentations and Articles about Rake

Other Make Reinvisionings …

Rake is a late entry in the make replacement field. Here are links to other projects with similar (and not so similar) goals.

Credits

Ryan Dlugosz
For the initial conversation that sparked Rake.
nobu.nokada@softhome.net
For the initial patch for rule support.
Tilman Sauerbeck <tilman@code-monkey.de>
For the recursive rule patch.

License

Rake is available under an MIT-style license.

:include: MIT-LICENSE

Support

The Rake homepage is rake.rubyforge.org. You can find the Rake RubyForge page at rubyforge.org/projects/rake.

Feel free to submit commits or feature requests. If you send a patch, remember to update the corresponding unit tests. If fact, I prefer new feature to be submitted in the form of new unit tests.

For other information, feel free to ask on the ruby-talk mailing list (which is mirrored to comp.lang.ruby) or contact jim dot weirich at gmail.com.


Other stuff

Author:Jim Weirich <jim.weirich@gmail.com>
Requires:Ruby 1.8.0 or later
License:Copyright 2003-2008 by Jim Weirich. Released under an MIT-style license. See the LICENSE file included in the distribution.

Warranty

This software is provided "as is" and without any express or implied warranties, including, without limitation, the implied warranties of merchantibility and fitness for a particular purpose.