Sha256: 17b7d88938f320c631183e9d15e86d75840c1e73fc369cc3a9a07382783c10c6

Contents?: true

Size: 1009 Bytes

Versions: 4

Compression:

Stored size: 1009 Bytes

Contents

sudo: false
language: ruby
rvm:
  - 2.2
  - 2.3.3
env:
  - DB=mysql
  - DB=postgres
  - DB=sqlite

matrix:
  exclude:
    - rvm: 2.2
      env: DB=mysql
    - rvm: 2.2
      env: DB=sqlite

bundler_args: --path=vendor/bundle --without heroku

cache: bundler

before_install:
  - "export DISPLAY=:99.0"
  - "sh -e /etc/init.d/xvfb start"

before_script:
  - sh -c "cp config/database.$DB.yml config/database.yml"
  - sh -c "if [ \"$DB\" = 'postgres' ]; then psql -c 'create database fat_free_crm_test;' -U postgres; fi"
  - sh -c "if [ \"$DB\" = 'mysql' ]; then mysql -e 'create database fat_free_crm_test;'; fi"
  - sh -c "RAILS_ENV=test bundle exec rake db:schema:load"

# Run specs
script: "RAILS_ENV=test bundle exec rake"

notifications:
  webhooks:
    urls:
      - https://webhooks.gitter.im/e/859260451e154d78c1be
    on_success: change  # options: [always|never|change] default: always
    on_failure: always  # options: [always|never|change] default: always
    on_start: false     # default: false

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
fat_free_crm-0.14.2 .travis.yml
fat_free_crm-0.14.1 .travis.yml
fat_free_crm-0.14.0 .travis.yml
reduced_fat_crm-0.14.0 .travis.yml