Sha256: 8ea4d1c1e5cb69e27ac9a75d8fbd3d2a39023b1495c339d9e82e9d4ca65b1d10

Contents?: true

Size: 918 Bytes

Versions: 5

Compression:

Stored size: 918 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
  password: omegared

readonly: &readonly
  username: root
  password: omegared

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

5 entries across 5 versions & 1 rubygems

Version Path
connection_manager-1.1.4 spec/database.yml
connection_manager-1.1.3 spec/database.yml
connection_manager-1.1.2 spec/database.yml
connection_manager-1.1.1 spec/database.yml
connection_manager-1.1.0 spec/database.yml