summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2014-05-20 16:59:52 -0700
committerLamont Granquist <lamont@scriptkiddie.org>2014-05-20 16:59:52 -0700
commit949395d153c7a65360eb876e1a8866bae8a6e83f (patch)
treeb395ad1269315a7727eb7f3585e8a654c64206cb
parent0d06643b8afe3271dbd658af8227487ead9f0a57 (diff)
downloadlibyajl2-gem-949395d153c7a65360eb876e1a8866bae8a6e83f.tar.gz
add prep before travis targets
-rw-r--r--Rakefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Rakefile b/Rakefile
index 5b0f112..85b9a1e 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 => ['compile', 'spec', 'style']
+task :travis => ['prep', 'compile', 'spec', 'style']
desc 'Run style, spec and test kichen on travis'
-task :travis_all => ['compile', 'spec', 'integration:cloud', 'style']
+task :travis_all => ['prep', 'compile', 'spec', 'integration:cloud', 'style']
-task :default => ['compile', 'spec', 'integration:vagrant', 'style']
+task :default => ['prep', 'compile', 'spec', 'integration:vagrant', 'style']