diff options
| -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 |
