Sha256: 83b218f3df9c1699c560f76d5940329bcb08ffd61a767f7bab554ffca65ada87
Contents?: true
Size: 799 Bytes
Versions: 13
Compression:
Stored size: 799 Bytes
Contents
<% socket = [ "/tmp/mysql.sock", "/opt/local/var/run/mysql5/mysqld.sock", "/tmp/mysqld.sock", "/var/run/mysqld.sock" ].detect { |socket| File.exist?(socket) } %> defaults: &defaults encoding: utf8 username: root password: <% if defined?(JRuby) %> adapter: jdbcmysql hostname: localhost <% else %> adapter: mysql2 socket: <%= socket %> <% end %> development: <<: *defaults database: iqvoc_skosxl_development # Warning: The database defined as 'test' will be erased and # re-generated from your development database when you run 'rake'. # Do not set this db to the same as development or production. test: <<: *defaults database: iqvoc_skosxl_test production: encoding: utf8 username: iqvoc_skosxl password: database: iqvoc_skosxl adapter: oracle_enhanced
Version data entries
13 entries across 13 versions & 1 rubygems