Rant is a flexible build tool written entirely in Ruby, similar to Rake. == What's new in this release? This is mainly a bugfix release and thus fully backwards compatible to 0.4.0. Fixes and minor improvements: * Fixes for Ruby 1.8.1 compatibility. * Fixes for Rules and multiple buildfiles per project. New features: * The +make+ command. I'd appreciate suggestions about new features, names, etc. == Installing Rant You can install Rant as a RubyGem: % gem install --remote rant or download the package from RubyForge(http://rubyforge.org/frs/?group_id=615) and install with install.rb: % ruby install.rb == More about Rant The equivalent to a Makefile for make is the Rantfile. An Rantfile is actually a valid Ruby script that is read by the rant command. Rant currently features: * Defining custom tasks * Automated packaging, testing and RDoc generation for Ruby applications and libraries. * Primitive support for compiling C# sources portably with csc, cscc and mcs. * Dependency checking for C/C++ source files. * Creating gzipped tar and zip archives ¡½ without installing additional software. * Multiple buildfiles (e.g. one per directory). * The rant-import command creates a monolithic rant script, so you don't depend on an rant installation anymore. ... and more, visit http://make.ruby-co.de Rubyforge page:: http://rubyforge.org/projects/make/ -- Stefan