-
Notifications
You must be signed in to change notification settings - Fork 613
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
git-svn-id: svn+ssh://rubyforge.org/var/svn/rake/trunk@585 5af023f1-ac1a-0410-98d6-829a145c37ef
- Loading branch information
jimweirich
committed
Apr 21, 2007
1 parent
6596cd3
commit 9bb3cb2
Showing
5 changed files
with
403 additions
and
303 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
= Rake 0.7.3 Released | ||
|
||
Rake version 0.7.3 is a minor release that includes some refactoring to better | ||
support custom Rake applications. | ||
|
||
== Changes | ||
|
||
=== New Features in Version 0.7.3 | ||
|
||
* Added the +init+ and +top_level+ methods to make the creation of custom Rake applications a bit easier. E.g. | ||
|
||
gem 'rake', ">= 0.7.3" | ||
require 'rake' | ||
|
||
Rake.application.init('myrake') | ||
|
||
task :default do | ||
something_interesting | ||
end | ||
|
||
Rake.application.top_level | ||
|
||
== What is Rake | ||
|
||
Rake is a build tool similar to the make program in many ways. But instead of | ||
cryptic make recipes, Rake uses standard Ruby code to declare tasks and | ||
dependencies. You have the full power of a modern scripting language built | ||
right into your build tool. | ||
|
||
== Availability | ||
|
||
The easiest way to get and install rake is via RubyGems ... | ||
|
||
gem install rake (you may need root/admin privileges) | ||
|
||
Otherwise, you can get it from the more traditional places: | ||
|
||
Home Page:: http://rake.rubyforge.org/ | ||
Download:: http://rubyforge.org/project/showfiles.php?group_id=50 | ||
|
||
== Thanks | ||
|
||
As usual, it was input from users that drove a alot of these changes. The | ||
following people either contributed patches, made suggestions or made | ||
otherwise helpful comments. Thanks to ... | ||
|
||
-- Jim Weirich |
Oops, something went wrong.