blob: c66f3b94417a39678f09bc6fbe9b6d1957f69b3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
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:
- 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"
|