A make-like build utility for Ruby. https://github.com/ruby/rake
Go to file
Eric Hodel 6cc416f536 Ignore rdoc tags cache directory 2014-03-12 14:27:13 -07:00
bin Removed unused setting of REDUCE_COMPAT. 2012-11-24 06:21:44 +11:00
doc Move old CHANGES file to doc/ to avoid confusion 2014-03-10 17:45:06 -07:00
lib Remove interpolation in `` in CpuCounter#run 2014-03-11 20:38:37 -07:00
rakelib Remove tags task 2014-03-10 17:33:47 -07:00
test Remove interpolation in `` in CpuCounter#run 2014-03-11 20:38:37 -07:00
.gitignore Ignore rdoc tags cache directory 2014-03-12 14:27:13 -07:00
.rubocop.yml Bumped up line length a bit. 2013-04-12 12:20:54 -04:00
.togglerc Handle test_rake_* in toggle. 2013-04-30 15:00:10 -04:00
.travis.yml Use hoe-travis plugin for travis-ci 2014-03-10 17:56:22 -07:00
Gemfile Only require minitest in Rubys prior to 2.0 2014-01-02 14:18:08 -05:00
History.rdoc Add #260 to History 2014-03-12 13:27:20 -07:00
MIT-LICENSE removed nested directory from CVS conversion. 2006-08-12 18:03:45 +00:00
Manifest.txt Test Rake::CpuCounter#in_path_command 2014-03-11 18:00:32 -07:00
README.rdoc Switch to hoe 2014-03-10 17:27:08 -07:00
Rakefile Force use of minitest 4.x 2014-03-11 14:06:27 -07:00

README.rdoc

= RAKE -- Ruby Make

home :: https://github.com/jimweirich/rake
bugs :: https://github.com/jimweirich/rake/issues

== Description

Rake is a Make-like program implemented in Ruby. Tasks and dependencies are
specified in standard Ruby syntax.

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 and publishing to FTP or SSH sites.  (Formerly
  tasks for building RDoc and Gems were included in rake but they're now
  available in RDoc and RubyGems respectively.)

* Supports parallel execution of tasks.

== Installation

=== Gem Installation

Download and install rake with the following.

   gem install rake

== 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

* For details on Rake's command-line invocation, read
  doc/command_line_usage.rdoc[https://github.com/jimweirich/rake/blob/master/doc/command_line_usage.rdoc]
* For details on writing Rakefiles, see
  doc/rakefile.rdoc[https://github.com/jimweirich/rake/blob/master/doc/rakefile.rdoc].
* For the original announcement of Rake, see
  doc/rational.rdoc[https://github.com/jimweirich/rake/blob/master/doc/rational.rdoc].
* For a glossary of terms, see
  doc/glossary.rdoc[https://github.com/jimweirich/rake/blob/master/doc/glossary.rdoc].

== Development

=== Source Repository

Rake is currently hosted at github. The github web page is
http://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 'flexmock' gem
* 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

Feature requests and bug reports can be made here

* https://github.com/jimweirich/rake/issues

== Online Resources

=== Rake References

* Rake Documentation Home: http://docs.rubyrake.org
* Rake Project Page: http://github.com/jimweirich/rake
* Rake API Documents: http://onestepback.org/software/rake/
* Rake Source Code Repo:  http://github.com/jimweirich/rake
* Rake Git Repo Clone URL: git://github.com/jimweirich/rake.git
* Rake Bug Reports: https://github.com/jimweirich/rake/issues
* Rake Continuous Build Server: https://travis-ci.org/#!/jimweirich/rake

=== Presentations and Articles about Rake

* Jim Weirich's 2003 RubyConf presentation:
  http://onestepback.org/articles/buildingwithrake/
* Martin Fowler's article on Rake: http://martinfowler.com/articles/rake.html

== 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.

* http://directory.fsf.org/bras.html -- Bras, one of earliest
  implementations of "make in a scripting language".
* http://www.a-a-p.org -- Make in Python
* http://www.aromatic.com/tools/jam.txt -- JAM, Java Automated Make
* http://ant.apache.org -- The Ant project
* http://search.cpan.org/search?query=PerlBuildSystem -- The Perl Build System
* http://rubydoc.info/gems/rant/0.5.7/frames -- Rant, another Ruby make tool.

== Credits

[<b>Ryan Dlugosz</b>] For the initial conversation that sparked Rake.

[<b>nobu.nokada@softhome.net</b>] For the initial patch for rule support.

[<b>Tilman Sauerbeck <tilman@code-monkey.de></b>] For the recursive rule patch.

[<b>Eric Hodel</b>] For aid in maintaining rake.

== License

Rake is available under an MIT-style license.

:include: MIT-LICENSE

== Support

The Rake homepage is http://onestepback.org/software/rake/.  You can find the Rake
GitHub page at http://github.com/jimweirich/rake.

Feel free to submit commits or feature requests.  If you send a patch,
remember to update the corresponding unit tests.  In 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.9 or later
License::  Copyright 2003-2013 by Jim Weirich.
           Released under an MIT-style license.  See the MIT-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.