Sha256: ff032b7fffdd7ed0d6879b884310b1583e7db89c5945f68d8aeb3d4f0298df74
Contents?: true
Size: 685 Bytes
Versions: 6
Compression:
Stored size: 685 Bytes
Contents
# MySQL. Versions 4.1 and 5.0 are recommended. # # Install the MYSQL driver # gem install mysql2 # # Ensure the MySQL gem is defined in your Gemfile # gem 'mysql2' # # And be sure to use new-style password hashing: # http://dev.mysql.com/doc/refman/5.0/en/old-client.html development: adapter: sqlite3 encoding: utf8 reconnect: false database: db/development.sqlite3 pool: 5 # 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: sqlite3 encoding: utf8 reconnect: false database: db/test.sqlite3 pool: 5
Version data entries
6 entries across 6 versions & 2 rubygems