From a817f99785de6c37bcba851d89db3e6ad391749b Mon Sep 17 00:00:00 2001 From: marutanm Date: Thu, 11 Aug 2011 21:13:30 +0900 Subject: [PATCH] fix rake-list --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index dd30963..1e8ae14 100644 --- a/Rakefile +++ b/Rakefile @@ -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