summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 3635dd9d2d10aabd3e7ed9d5c1bb3fc81b3ed15b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
env:
  - DB=mysql
  - DB=postgresql
before_install:
  - sudo apt-get install libicu-dev -y
  - gem install charlock_holmes -v="0.6.9"
branches:
  only:
    - 'master'
rvm:
  - 1.9.3
services:
  - mysql
  - postgresql
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"