AMD64
Ruby
Git
travis-ci/travis-yml:.travis.yml@00652b6
language: ruby
cache: bundler
before_install:
- gem install bundler
script:
- bundle exec rspec spec
- bundle exec rspec spec/integrate/configs_spec.rb --tag configs
# - bundle exec bin/spec > spec.json
# - git diff --stat --exit-code
# - git diff --stat --cached --exit-code
Build Config
{
"os": [
"linux"
],
"cache": {
"bundler": true
},
"script": [
"bundle exec rspec spec",
"bundle exec rspec spec/integrate/configs_spec.rb --tag configs"
],
"language": "ruby",
"before_install": [
"gem install bundler"
]
}