Giter Club home page Giter Club logo

rake's Introduction

RAKE – Ruby Make

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

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

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.

[email protected]

For the initial patch for rule support.

Tilman Sauerbeck <[email protected]>

For the recursive rule patch.

Eric Hodel

For aid in maintaining rake.

License

Rake is available under an MIT-style license.

:include: MIT-LICENSE

Support

The Rake homepage is onestepback.org/software/rake/. You can find the Rake GitHub page at 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 <[email protected]>

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.

rake's People

Contributors

jimweirich avatar drbrain avatar quix avatar michaeljbishop avatar luislavena avatar foobarwidget avatar raggi avatar joliss avatar jasoares avatar xprayc avatar vipulnsward avatar stuartnelson3 avatar seanmoon avatar spastorino avatar zenspider avatar rtlechow avatar snaury avatar wwkeyboard avatar mnoble avatar elufimov avatar miry avatar mmorearty avatar unak avatar noam87 avatar odigity avatar superp avatar rafaelrosafu avatar salimane avatar sgronblo avatar thinkerbot avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.