1= Rake 0.9.2 Released
2
3Rake version 0.9.2 has a few small fixes.  See below for details.
4
5== Changes
6
7* Support for Ruby 1.8.6 was fixed.
8* Global DSL warnings now honor --no-deprecate
9
10== What is Rake
11
12Rake is a build tool similar to the make program in many ways. But
13instead of cryptic make recipes, Rake uses standard Ruby code to
14declare tasks and dependencies. You have the full power of a modern
15scripting language built right into your build tool.
16
17== Availability
18
19The easiest way to get and install rake is via RubyGems ...
20
21  gem install rake    (you may need root/admin privileges)
22
23Otherwise, you can get it from the more traditional places:
24
25Home Page:: http://rake.rubyforge.org/
26Download::  http://rubyforge.org/project/showfiles.php?group_id=50
27GitHub::    git://github.com/jimweirich/rake.git
28
29== Thanks
30
31As usual, it was input from users that drove a alot of these changes. The
32following people either contributed patches, made suggestions or made
33otherwise helpful comments.  Thanks to ...
34
35* James M. Lawrence (quix)
36* Roger Pack
37* Cezary Baginski
38* Sean Scot August Moon
39* R.T. Lechow
40* Alex Chaffee
41* James Tucker
42* Matthias Lüdtke
43* Santiago Pastorino
44
45Also, bit thanks to Eric Hodel for assisting with getting this release
46out the door (where "assisting" includes, but is not by any means
47limited to, "pushing" me to get it done).
48
49-- Jim Weirich
50