From ec1dc570b442ffeefa32efa6c5050cd6007121d3 Mon Sep 17 00:00:00 2001 From: Sasha Gerrand Date: Tue, 6 Jan 2015 13:44:37 +0000 Subject: [PATCH] Removed duplicate default task definition The default task was that which was defined last, so I'm assuming that's the expected behaviour. --- Rakefile | 3 --- 1 file changed, 3 deletions(-) diff --git a/Rakefile b/Rakefile index 188d724..98b1d18 100644 --- a/Rakefile +++ b/Rakefile @@ -58,8 +58,5 @@ namespace :travis do task ci: %w(style spec) end -# The default rake task should just run it all -task default: %w(travis:ci integration) - # The default rake task should just run it all task default: ['style', 'spec', 'integration:vagrant']