Say hi to Travis

This commit is contained in:
Fabio Rehm 2013-03-05 01:33:02 -03:00
parent 97476af450
commit 631ced0a7f
2 changed files with 10 additions and 0 deletions

8
.travis.yml Normal file
View file

@ -0,0 +1,8 @@
language: ruby
rvm:
- 1.9.3
- 2.0.0
matrix:
allow_failures:
- rvm: 2.0.0
script: "bundle exec rake ci"

View file

@ -1,3 +1,5 @@
Dir['./tasks/**/*.rake'].each { |f| load f }
require 'bundler/gem_tasks'
task :ci => ['spec:unit']