/tools/Ruby/lib/ruby/gems/1.8/gems/rake-0.9.2/doc/release_notes/rake-0.8.5.rdoc

http://github.com/agross/netopenspace · Unknown · 53 lines · 34 code · 19 blank · 0 comment · 0 complexity · 97b285975d73a7706ac5d26224b525d7 MD5 · raw file

  1. = Rake 0.8.5 Released
  2. Rake version 0.8.5 is a new release of Rake with greatly improved
  3. support for executing commands on Windows. The "sh" command now has
  4. the same semantics on Windows that it has on Unix based platforms.
  5. == Changes
  6. === New Features / Enhancements in Version 0.8.5
  7. * Improved implementation of the Rake system command for Windows.
  8. (patch from James M. Lawrence/quix)
  9. * Support for Ruby 1.9's improved system command. (patch from James
  10. M. Lawrence/quix)
  11. * Rake now includes the configured extension when invoking an
  12. executable (Config::CONFIG['EXEEXT])
  13. === Bug Fixes in Version 0.8.5
  14. * Environment variable keys are now correctly cased (it matters in
  15. some implementations).
  16. == What is Rake
  17. Rake is a build tool similar to the make program in many ways. But
  18. instead of cryptic make recipes, Rake uses standard Ruby code to
  19. declare tasks and dependencies. You have the full power of a modern
  20. scripting language built right into your build tool.
  21. == Availability
  22. The easiest way to get and install rake is via RubyGems ...
  23. gem install rake (you may need root/admin privileges)
  24. Otherwise, you can get it from the more traditional places:
  25. Home Page:: http://rake.rubyforge.org/
  26. Download:: http://rubyforge.org/project/showfiles.php?group_id=50
  27. GitHub:: git://github.com/jimweirich/rake.git
  28. == Thanks
  29. As usual, it was input from users that drove a alot of these changes. The
  30. following people either contributed patches, made suggestions or made
  31. otherwise helpful comments. Thanks to ...
  32. * James M. Lawrence/quix
  33. * Luis Lavena
  34. -- Jim Weirich