From 39994a07daf805f6546d31e437c226bb1450bb45 Mon Sep 17 00:00:00 2001 From: Bastien Date: Thu, 10 Oct 2013 01:01:33 +0200 Subject: [PATCH] [Travis] Fix --- .travis.yml | 3 ++- Rakefile | 9 ++++++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 418ef34..a50753d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,5 @@ language: ruby rvm: - 1.9.3 - - 2.0.0 \ No newline at end of file + - 2.0.0 +script: rspec spec \ No newline at end of file diff --git a/Rakefile b/Rakefile index 2824217..dc4fe3d 100644 --- a/Rakefile +++ b/Rakefile @@ -6,4 +6,11 @@ rescue LoadError puts 'You must `gem install bundler` and `bundle install` to run rake tasks' end -require 'rake' \ No newline at end of file +require 'rake' + +task :default => [:spec] + +desc 'run Rspec specs' +task :spec do + sh 'rspec spec' +end \ No newline at end of file