Say hi to Travis
This commit is contained in:
parent
97476af450
commit
631ced0a7f
2 changed files with 10 additions and 0 deletions
8
.travis.yml
Normal file
8
.travis.yml
Normal 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"
|
2
Rakefile
2
Rakefile
|
@ -1,3 +1,5 @@
|
||||||
Dir['./tasks/**/*.rake'].each { |f| load f }
|
Dir['./tasks/**/*.rake'].each { |f| load f }
|
||||||
|
|
||||||
require 'bundler/gem_tasks'
|
require 'bundler/gem_tasks'
|
||||||
|
|
||||||
|
task :ci => ['spec:unit']
|
||||||
|
|
Loading…
Reference in a new issue