NullVoxPopuli/drawers

View on GitHub
.travis.yml

Summary

Maintainability
Test Coverage
language: ruby
bundler_args: --without guard
rvm:
  - "2.3.0"
  - "2.3.3"
  - ruby-head

env:
  matrix:
    - "RAILS_VERSION=4.2"
    - "RAILS_VERSION=5.0"
    - "RAILS_VERSION=master"

install:
  - gem update --system
  - bundle install --path=vendor/bundle --retry=3 --jobs=3

script: "bundle exec rspec"
after_script: codeclimate-test-reporter

addons:
  code_climate:
    repo_token: d1d3df95e4c3d80f789dd38e0af3efa1eb7f18485d18fee6fdd754e3e08f858b

branches:
  only: master

notifications:
  email: false

matrix:
  fast_finish: true
  allow_failures:
    - rvm: ruby-head
    - env: "RAILS_VERSION=master"