Sha256: 87dc6dea0ec257ed70fafa1d299c847a653605748f2bc12a8e56e9a5e9b23d0d

Contents?: true

Size: 876 Bytes

Versions: 2

Compression:

Stored size: 876 Bytes

Contents

# 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.
common: &common
  pool: 100
  timeout: 5000
  build_connection_class: true

master: &master
  username: root

readonly: &readonly
  username: root

mysql_without_db:
  <<: *common
  <<: *master

test:
  <<: *common
  <<: *master
  adapter: mysql2
  database: cm_test
  slaves: [slave_test]

slave_test:
  <<: *common
  <<: *master
  adapter: mysql2
  database: cm_test
  masters: [test]

mysql_without_db:
  <<: *common
  <<: *master
  adapter: mysql2

cm_user_test:
  <<: *common
  <<: *master
  adapter: mysql2
  database: cm_user_test

postgres_without_db:
  <<: *common
  adapter: postgresql
  database: postgres

test_other:
  <<: *common
  adapter: postgresql
  database: cm_test

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
connection_manager-2.0.0 spec/database.yml
connection_manager-1.1.5 spec/database.yml