do not use a root password for local dev

This commit is contained in:
Andrew Cantino 2013-03-17 23:53:17 -07:00
parent defe0a6f01
commit 95994eb1b4
2 changed files with 2 additions and 3 deletions

View file

@ -2,7 +2,6 @@ language: ruby
bundler_args: --without development production
rvm:
- 1.9.3
- jruby-19mode # JRuby in 1.9 mode
before_script:
- mysql -e 'create database huginn_test;'
script: "bundle exec rake"

View file

@ -2,7 +2,7 @@ development:
adapter: mysql2
database: huginn_development
username: root
password: password
password:
socket: <%= ["/var/run/mysqld/mysqld.sock", "/opt/local/var/run/mysql5/mysqld.sock", "/tmp/mysql.sock"].find{ |path| File.exist? path } %>
encoding: utf8
reconnect: true
@ -15,7 +15,7 @@ test:
adapter: mysql2
database: huginn_test
username: root
password: password
password:
socket: <%= ["/var/run/mysqld/mysqld.sock", "/opt/local/var/run/mysql5/mysqld.sock", "/tmp/mysql.sock"].find{ |path| File.exist? path } %>
encoding: utf8
reconnect: true