From 9033a081da3b589c18254866c6f239c5c85db6de Mon Sep 17 00:00:00 2001 From: Lamont Granquist Date: Wed, 21 May 2014 09:50:39 -0700 Subject: need to run prep + compile separately they mutate the list of files which changes the gemspsec which confuses rake-compiler --- Rakefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Rakefile') diff --git a/Rakefile b/Rakefile index 223d02f..9c2fb8a 100644 --- a/Rakefile +++ b/Rakefile @@ -205,9 +205,9 @@ desc 'Run all style checks' task :style => ['style:rubocop', 'style:reek'] desc 'Run style + spec tests by default on travis' -task :travis => ['prep', 'compile', 'spec', 'style'] +task :travis => ['spec', 'style'] desc 'Run style, spec and test kichen on travis' -task :travis_all => ['prep', 'compile', 'spec', 'integration:cloud', 'style'] +task :travis_all => ['spec', 'integration:cloud', 'style'] -task :default => ['prep', 'compile', 'spec', 'integration:vagrant', 'style'] +task :default => ['spec', 'integration:vagrant', 'style'] -- cgit v1.2.1