Sha256: b66d2a38390a1839b60c99aef2e67b722bea1ae175576b03f1c293f2c4ff43e5

Contents?: true

Size: 670 Bytes

Versions: 14

Compression:

Stored size: 670 Bytes

Contents

<% socket = [
  "/tmp/mysql.sock",
  "/opt/local/var/run/mysql5/mysqld.sock",
  "/tmp/mysqld.sock",
  "/var/run/mysqld.sock"
].detect { |socket| File.exist?(socket) } %>

defaults: &defaults
  encoding: utf8

development:
  <<: *defaults
  adapter: sqlite3
  database: db/dev.sqlite

# 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:
  <<: *defaults
  adapter: sqlite3
  database: db/test.sqlite

production:
  <<: *defaults
  adapter: mysql2
  socket: <%= socket %>
  username:
  password:
  database: iqvoc_inflectionals

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
iqvoc_inflectionals-2.11.4 config/database.template.yml
iqvoc_inflectionals-2.11.3 config/database.template.yml
iqvoc_inflectionals-2.9.0 config/database.template.yml
iqvoc_inflectionals-2.8.0 config/database.template.yml
iqvoc_inflectionals-2.5.0 config/database.template.yml
iqvoc_inflectionals-2.1.0 config/database.template.yml
iqvoc_inflectionals-2.0.3 config/database.template.yml
iqvoc_inflectionals-2.0.2 config/database.template.yml
iqvoc_inflectionals-2.0.1 config/database.template.yml
iqvoc_inflectionals-2.0.0 config/database.template.yml
iqvoc_inflectionals-1.1.3 config/database.template.yml
iqvoc_inflectionals-1.1.1 config/database.template.yml
iqvoc_inflectionals-1.1.0 config/database.template.yml
iqvoc_inflectionals-1.0.1 config/database.template.yml