Sha256: 34a92d0be71465106b61581ad619ed7da8cddcde4f9d65d69c728e1627d9f6b3

Contents?: true

Size: 896 Bytes

Versions: 7

Compression:

Stored size: 896 Bytes

Contents

# SQLite version 3.x
#   gem install sqlite3
#
#   Ensure the SQLite 3 gem is defined in your Gemfile
#   gem 'sqlite3'
#
default: &default
  adapter: mysql2
  encoding: utf8
  username: root
  password:
  host: 127.0.0.1
  port: 3306
  pool: 5
  timeout: 10000

development:
  <<: *default
  database: development_db_name

test:
  <<: *default
  database: test_db_name

production:
  <<: *default
  database: production_db_name

# default: &default
#   adapter: sqlite3
#   pool: 5
#   timeout: 10000
#
# development:
#   <<: *default
#   database: db/development.sqlite3
#
# # 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:
#   <<: *default
#   database: db/test.sqlite3
#
# production:
#   <<: *default
#   database: db/production.sqlite3

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
hyper-mesh-0.6.0 spec/test_app/config/database.yml
hyper-mesh-0.5.4 spec/test_app/config/database.yml
hyper-mesh-0.5.3 spec/test_app/config/database.yml
hyper-mesh-0.5.2 spec/test_app/config/database.yml
hyper-mesh-0.5.1 spec/test_app/config/database.yml
hyper-mesh-0.5.0 spec/test_app/config/database.yml
hyper-mesh-0.4.0 spec/test_app/config/database.yml