Sha256: 91b34505419309869b8cc9ddda9da7e92442d6e6f212c3dddd6e9bd75c66772f

Contents?: true

Size: 612 Bytes

Versions: 7

Compression:

Stored size: 612 Bytes

Contents

<%
# note - this file is used by rake wagn:install to generate the initial database.yml file.
# See more in the README.

if @mode==:dev
  %>common: &common<%
else
  %>production:
  database: wagn_production<%
end %>
  adapter: <%= @engine == :postgres ? :postgresql : :mysql2 %>
  username: root
  password:
  pool: 5
  encoding: utf8
  host: localhost
#  socket: /tmp/mysql.sock
<% if @mode==:dev %>
production:
  database: wagn_production
  <<: *common

development:
  database: wagn_development
  <<: *common

test:
  database: wagn_test
  <<: *common

cucumber:
  database: wagn_test
  <<: *common
<% end %>

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
wagn-1.12.13 config/samples/database.yml.erb
wagn-1.12.12 config/samples/database.yml.erb
wagn-1.12.11 config/samples/database.yml.erb
wagn-1.12.10 config/samples/database.yml.erb
wagn-1.12.9 config/samples/database.yml.erb
wagn-1.12.8 config/samples/database.yml.erb
wagn-1.12.7 config/samples/database.yml.erb