.travis.yml in ransack-1.0.0 vs .travis.yml in ransack-1.1.0
- old
+ new
@@ -1,16 +1,21 @@
rvm:
- - 1.8.7
- - 1.9.2
- 1.9.3
- 2.0.0
env:
- - RAILS=4-0-stable
- - RAILS=3-2-stable
- - RAILS=3-1-stable
- - RAILS=3-0-stable
+- RAILS=4-0-stable DB=sqlite
+ - RAILS=4-0-stable DB=mysql
+ - RAILS=4-0-stable DB=postgres
+ - RAILS=3-2-stable DB=sqlite
+ - RAILS=3-2-stable DB=mysql
+ - RAILS=3-2-stable DB=postgres
+ - RAILS=3-1-stable DB=sqlite
+ - RAILS=3-1-stable DB=mysql
+ - RAILS=3-1-stable DB=postgres
+ - RAILS=3-0-stable DB=sqlite
+ - RAILS=3-0-stable DB=mysql
+ - RAILS=3-0-stable DB=postgres
-matrix:
- exclude:
- - rvm: 1.8.7
- env: RAILS=4-0-stable
+before_script:
+ - mysql -e 'create database ransack;'
+ - psql -c 'create database ransack;' -U postgres
\ No newline at end of file