1
0
Fork 0
mirror of https://github.com/activerecord-hackery/ransack.git synced 2022-11-09 13:47:45 -05:00
activerecord-hackery--ransack/.travis.yml
jonatack 776e0de64e Update Gemfile, gemspec and travis-ci
Tests should be passing now.
2014-01-01 02:22:10 +01:00

15 lines
352 B
YAML

rvm:
- 1.9.3
- 2.0.0
- 2.1.0
env:
- RAILS=master DB=sqlite3
- RAILS=master DB=mysql
- RAILS=master DB=postgres
before_script:
- mysql -e 'create database ransack collate utf8_general_ci;'
- mysql -e 'use ransack;show variables like "%character%";show variables like "%collation%";'
- psql -c 'create database ransack;' -U postgres