-
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.
- Loading branch information
1 parent
0e4ad02
commit b2a8487
Showing
1 changed file
with
49 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
= Rake 0.9.2 Released | ||
|
||
Rake version 0.9.2 has a few small fixes. See below for details. | ||
|
||
== Changes | ||
|
||
* Support for Ruby 1.8.6 was fixed. | ||
* Global DSL warnings now honor --no-deprecate | ||
|
||
== 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 | ||
GitHub:: git://github.com/jimweirich/rake.git | ||
|
||
== 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 ... | ||
|
||
* James M. Lawrence (quix) | ||
* Roger Pack | ||
* Cezary Baginski | ||
* Sean Scot August Moon | ||
* R.T. Lechow | ||
* Alex Chaffee | ||
* James Tucker | ||
* Matthias Lüdtke | ||
* Santiago Pastorino | ||
|
||
Also, bit thanks to Eric Hodel for assisting with getting this release | ||
out the door (where "assisting" includes, but is not by any means | ||
limited to, "pushing" me to get it done). | ||
|
||
-- Jim Weirich |