Sha256: b5ac1b1b142445806f3d5923821069a789af0a203782e03e41ee580a17ff8884
Contents?: true
Size: 767 Bytes
Versions: 1
Compression:
Stored size: 767 Bytes
Contents
production: adapter: mysql2 encoding: utf8 reconnect: false database: <%= app_name %>_pro pool: 5 username: root password: socket: <%=RUBY_PLATFORM.downcase.include?("darwin") ? '/tmp/mysql.sock' : '/var/run/mysqld/mysqld.sock' %> development: adapter: mysql2 encoding: utf8 reconnect: false database: <%= app_name %>_dev pool: 5 username: root password: socket: <%=RUBY_PLATFORM.downcase.include?("darwin") ? '/tmp/mysql.sock' : '/var/run/mysqld/mysqld.sock' %> test: &test adapter: mysql2 encoding: utf8 reconnect: true database: <%= app_name %>_test pool: 5 username: root password: socket: <%=RUBY_PLATFORM.downcase.include?("darwin") ? '/tmp/mysql.sock' : '/var/run/mysqld/mysqld.sock' %> cucumber: <<: *test
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
laces-0.1.0 | templates/config/database.yml |