Sha256: 7ee1a2efb3291021cfa161229f312555d45d905c7a58c4ad46c231f3be675905

Contents?: true

Size: 1.25 KB

Versions: 9

Compression:

Stored size: 1.25 KB

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: mysql
  encoding: utf8
  database: <%= db_name %>_development
  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: mysql
  encoding: utf8
  database: <%= db_name %>_test
  username: root
  password:
  socket: /tmp/mysql.sock

production:
  adapter: mysql
  encoding: utf8
  database: <%= db_name %>
  username: <%= db_user %>
  password: <%= db_pass %>
  socket: /var/lib/mysql/mysql.sock

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
capigen-0.1.4 lib/templates/rails/database.yml.erb
capigen-0.1.1 templates/rails/database.yml.erb
capigen-0.1.2 lib/templates/rails/database.yml.erb
capigen-0.1.3 lib/templates/rails/database.yml.erb
capitate-0.1.7 lib/templates/rails/database.yml.erb
capitate-0.2.2 lib/templates/rails/database.yml.erb
capitate-0.1.8 lib/templates/rails/database.yml.erb
capitate-0.1.9 lib/templates/rails/database.yml.erb
capitate-0.2.1 lib/templates/rails/database.yml.erb