Skip to content
This repository has been archived by the owner on Feb 15, 2018. It is now read-only.

Commit

Permalink
[Travis] Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Bastien committed Oct 9, 2013
1 parent b26bc50 commit 39994a0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
@@ -1,4 +1,5 @@
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.0.0
script: rspec spec
9 changes: 8 additions & 1 deletion Rakefile
Expand Up @@ -6,4 +6,11 @@ rescue LoadError
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end

require 'rake'
require 'rake'

task :default => [:spec]

desc 'run Rspec specs'
task :spec do
sh 'rspec spec'
end

0 comments on commit 39994a0

Please sign in to comment.