aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rwxr-xr-xlib/rake.rb1
2 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index aa514e7528..dcb34e573d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -60,6 +60,9 @@ Sat Dec 20 15:34:36 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
encoding, e.g. FileList['*.rb'].egrep(/require/, encoding:
"ascii-8bit")
+ * lib/rake.rb (Rake::MultiTask): invoke_prerequisites should be
+ private. a patch from okkez in [ruby-dev:37399]
+
Sat Dec 20 10:59:16 2008 Yuki Sonoda (Yugui) <yugui@yugui.jp>
* lib/irb/locale.rb (IRB::Locale#initialize)
diff --git a/lib/rake.rb b/lib/rake.rb
index 63412b1531..a0685b4ab2 100755
--- a/lib/rake.rb
+++ b/lib/rake.rb
@@ -802,6 +802,7 @@ module Rake
# parallel using Ruby threads.
#
class MultiTask < Task
+ private
def invoke_prerequisites(args, invocation_chain)
threads = @prerequisites.collect { |p|
Thread.new(p) { |r| application[r].invoke_with_call_chain(args, invocation_chain) }