Sha256: 17cf427d99ff30f817833916d2c9e8da3c4037b03573356aeecef4078870049f

Contents?: true

Size: 961 Bytes

Versions: 5

Compression:

Stored size: 961 Bytes

Contents

# MySQL.  Versions 4.1 and 5.0 are recommended.
#
# Install the MySQL driver:
#   gem install mysql2
#
# And be sure to use new-style password hashing:
#   http://dev.mysql.com/doc/refman/5.0/en/old-client.html
development:
  adapter: mysql2
  encoding: utf8
  reconnect: false
  database: dummy_development
  pool: 5
  username: root
  password:
  socket: /tmp/mysql.sock

# 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:
  adapter: mysql2
  encoding: utf8
  reconnect: false
  database: dummy_test
  pool: 5
  username: root
  password:
  socket: /tmp/mysql.sock

test_sqlite:
  adapter: sqlite3
  database: db/test.sqlite3
  pool: 5
  timeout: 5000

production:
  adapter: mysql2
  encoding: utf8
  reconnect: false
  database: dummy_production
  pool: 5
  username: root
  password:
  socket: /tmp/mysql.sock

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
closure_tree-1.0.0 test/dummy/config/database.yml
closure_tree-1.0.0.beta6 test/dummy/config/database.yml
closure_tree-1.0.0.beta5 test/dummy/config/database.yml
closure_tree-1.0.0.beta3 test/dummy/config/database.yml
closure_tree-1.0.0.beta2 test/dummy/config/database.yml