Sha256: 4f2ad24dcf2439f844ce5004337aa0dfe01cf659eef794b949dd98be1b9174cc
Contents?: true
Size: 830 Bytes
Versions: 20
Compression:
Stored size: 830 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 adapter: sqlite3 database: ":memory:" verbosity: silent production: encoding: utf8 username: iqvoc_skosxl password: database: iqvoc_skosxl adapter: oracle_enhanced
Version data entries
20 entries across 20 versions & 1 rubygems