From 1ac9c70cc69b2e27a54120e9c2c8acf077641538 Mon Sep 17 00:00:00 2001 From: Fabio Rehm Date: Fri, 12 Apr 2013 18:37:38 -0300 Subject: [PATCH] Attempt to enable code coverage on travis --- .travis.yml | 2 +- Rakefile | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 384fc3f..83b319a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,4 +5,4 @@ rvm: matrix: allow_failures: - rvm: 2.0.0 -script: "bundle exec rake ci" +script: "bundle exec rake" diff --git a/Rakefile b/Rakefile index 09df0ec..58b0a7b 100644 --- a/Rakefile +++ b/Rakefile @@ -1,5 +1,3 @@ Dir['./tasks/**/*.rake'].each { |f| load f } require 'bundler/gem_tasks' - -task :ci => ['spec:unit']