diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2012-12-17 08:20:19 -0800 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2012-12-17 08:20:19 -0800 |
| commit | 73a1709718601f31ebab8abe6b56d062e7f7f3a1 (patch) | |
| tree | 00ec9f7e3f46f1bfeef54330858119fa6c084bce | |
| parent | f222d8cc19320b15c3993b7b983ed57133604aa5 (diff) | |
| parent | 137ec8de0556b38cf16d54dc1ba789fb06c24f41 (diff) | |
| download | mruby-73a1709718601f31ebab8abe6b56d062e7f7f3a1.tar.gz mruby-73a1709718601f31ebab8abe6b56d062e7f7f3a1.zip | |
Merge pull request #636 from selman/minirake_tasks
fix (-T, --tasks) show tasks
| -rwxr-xr-x | minirake | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -315,7 +315,7 @@ class RakeApp # Display the tasks and dependencies. def display_tasks - Task.tasks.each do |t| + MiniRake::Task.tasks.each do |t| puts "#{t.class} #{t.name}" t.prerequisites.each { |pre| puts " #{pre}" } end @@ -417,4 +417,4 @@ end if __FILE__ == $0 then RakeApp.new.run -end
\ No newline at end of file +end |
