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

http://github.com/agross/netopenspace · Unknown · 55 lines · 35 code · 20 blank · 0 comment · 0 complexity · 043269ac4be03db6047588804c24b4d3 MD5 · raw file

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