rake 0.8.6 → 0.8.7

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of rake might be problematic. Click here for more details.

data/CHANGES CHANGED
@@ -1,6 +1,10 @@
1
1
 
2
2
  = Rake Changelog
3
3
 
4
+ == Version 0.8.7
5
+
6
+ * Fixed EXEEXT for JRuby on windows.
7
+
4
8
  == Version 0.8.6
5
9
 
6
10
  * Minor fixes to the RDoc generation (removed dependency on darkfish
@@ -0,0 +1,55 @@
1
+ = Rake 0.8.7 Released
2
+
3
+ Rake version 0.8.5 introduced greatly improved support for executing
4
+ commands on Windows. The "sh" command now has the same semantics on
5
+ Windows that it has on Unix based platforms.
6
+
7
+ Rake version 0.8.6 includes minor fixes the the RDoc generation.
8
+ Rake version 0.8.7 includes a minor fix for JRuby running on windows.
9
+
10
+ == Changes
11
+
12
+ === New Features / Enhancements in Version 0.8.5
13
+
14
+ * Improved implementation of the Rake system command for Windows.
15
+ (patch from James M. Lawrence/quix)
16
+
17
+ * Support for Ruby 1.9's improved system command. (patch from James
18
+ M. Lawrence/quix)
19
+
20
+ * Rake now includes the configured extension when invoking an
21
+ executable (Config::CONFIG['EXEEXT])
22
+
23
+ === Bug Fixes in Version 0.8.5
24
+
25
+ * Environment variable keys are now correctly cased (it matters in
26
+ some implementations).
27
+
28
+ == What is Rake
29
+
30
+ Rake is a build tool similar to the make program in many ways. But
31
+ instead of cryptic make recipes, Rake uses standard Ruby code to
32
+ declare tasks and dependencies. You have the full power of a modern
33
+ scripting language built right into your build tool.
34
+
35
+ == Availability
36
+
37
+ The easiest way to get and install rake is via RubyGems ...
38
+
39
+ gem install rake (you may need root/admin privileges)
40
+
41
+ Otherwise, you can get it from the more traditional places:
42
+
43
+ Home Page:: http://rake.rubyforge.org/
44
+ Download:: http://rubyforge.org/project/showfiles.php?group_id=50
45
+ GitHub:: git://github.com/jimweirich/rake.git
46
+
47
+ == Thanks
48
+
49
+ As usual, it was input from users that drove a alot of these changes. The
50
+ following people either contributed patches, made suggestions or made
51
+ otherwise helpful comments. Thanks to ...
52
+
53
+ * Charles Nutter
54
+
55
+ -- Jim Weirich
@@ -29,7 +29,7 @@
29
29
  # as a library via a require statement, but it can be distributed
30
30
  # independently as an application.
31
31
 
32
- RAKEVERSION = '0.8.6'
32
+ RAKEVERSION = '0.8.7'
33
33
 
34
34
  require 'rbconfig'
35
35
  require 'fileutils'
@@ -957,9 +957,13 @@ end
957
957
  # added to the FileUtils utility functions.
958
958
  #
959
959
  module FileUtils
960
+ RUBY_EXT = ((Config::CONFIG['ruby_install_name'] =~ /\.(com|cmd|exe|bat|rb|sh)$/) ?
961
+ "" :
962
+ Config::CONFIG['EXEEXT'])
963
+
960
964
  RUBY = File.join(
961
965
  Config::CONFIG['bindir'],
962
- Config::CONFIG['ruby_install_name'] + Config::CONFIG['EXEEXT']).
966
+ Config::CONFIG['ruby_install_name'] + RUBY_EXT).
963
967
  sub(/.*\s.*/m, '"\&"')
964
968
 
965
969
  OPT_TABLE['sh'] = %w(noop verbose)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rake
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.6
4
+ version: 0.8.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jim Weirich
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-05-11 00:00:00 -04:00
12
+ date: 2009-05-15 00:00:00 -04:00
13
13
  default_executable: rake
14
14
  dependencies: []
15
15
 
@@ -45,6 +45,7 @@ extra_rdoc_files:
45
45
  - doc/release_notes/rake-0.8.4.rdoc
46
46
  - doc/release_notes/rake-0.8.5.rdoc
47
47
  - doc/release_notes/rake-0.8.6.rdoc
48
+ - doc/release_notes/rake-0.8.7.rdoc
48
49
  files:
49
50
  - install.rb
50
51
  - CHANGES
@@ -157,6 +158,7 @@ files:
157
158
  - doc/release_notes/rake-0.8.4.rdoc
158
159
  - doc/release_notes/rake-0.8.5.rdoc
159
160
  - doc/release_notes/rake-0.8.6.rdoc
161
+ - doc/release_notes/rake-0.8.7.rdoc
160
162
  has_rdoc: true
161
163
  homepage: http://rake.rubyforge.org
162
164
  post_install_message: