summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 91b546435b510d870b2d7cf03a0ee80cd5e5d6fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
env:
  - DB=mysql TRAVIS=true
  - DB=postgresql TRAVIS=true
before_install:
  - sudo apt-get install libicu-dev -y
  - gem install charlock_holmes -v="0.6.9"
branches:
  only:
    - 'master'
rvm:
  - 1.9.3
  - 2.0.0
services:
  - mysql
  - postgresql
before_script:
  - "cp config/database.yml.$DB config/database.yml"
  - "cp config/application.yml.example config/application.yml"
  - "bundle exec rake db:create"
  - "bundle exec rake db:setup"
script: "bundle exec rake spec"