summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: c2a12a30b1342e32b0c8b842311f848a5c38f171 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
env:
  - DB=mysql
branches:
  only:
    - 'master'
rvm:
  - 1.9.3
services:
  - mysql
before_script:
  - "cp config/database.yml.$DB config/database.yml"
  - "bundle exec rake db:create"
  - "bundle exec rake db:setup"
script: "bundle exec rake spec"