fix rake-list

This commit is contained in:
marutanm 2011-08-11 21:13:30 +09:00
parent 0e072543da
commit a817f99785
1 changed files with 1 additions and 1 deletions

View File

@ -256,6 +256,6 @@ end
desc "list tasks"
task :list do
puts "Tasks: #{(Rake::Task.tasks - [Rake::Task[:list]]).to_sentence}"
puts "Tasks: #{(Rake::Task.tasks - [Rake::Task[:list]]).join(', ')}"
puts "(type rake -T for more detail)\n\n"
end