Sha256: 074045c4757f1c22379b822fa0f67304ebd409f003fffd0583a78b20bfd7e180
Contents?: true
Size: 910 Bytes
Versions: 224
Compression:
Stored size: 910 Bytes
Contents
# MySQL (default setup). Versions 4.1 and 5.0 are recommended. # # Install the MySQL driver: # gem install mysql # On Mac OS X: # sudo gem install mysql -- --with-mysql-dir=/usr/local/mysql # On Mac OS X Leopard: # sudo env ARCHFLAGS="-arch i386" gem install mysql -- --with-mysql-config=/usr/local/mysql/bin/mysql_config # This sets the ARCHFLAGS environment variable to your native architecture # On Windows: # gem install mysql # Choose the win32 build. # Install MySQL and put its /bin directory on your path. # # And be sure to use new-style password hashing: # http://dev.mysql.com/doc/refman/5.0/en/old-client.html development: adapter: sqlite3 database: db/development.sqlite3 test: adapter: sqlite3 database: db/development.sqlite3 staging: adapter: sqlite3 database: db/development.sqlite3 production: adapter: sqlite3 database: db/development.sqlite3
Version data entries
224 entries across 56 versions & 4 rubygems