Sha256: dffdf29c05fe7103781609d6bfbaaecbd8cc5ea50beb91d563a62f1fc0781074

Contents?: true

Size: 565 Bytes

Versions: 6

Compression:

Stored size: 565 Bytes

Contents

# SQLite version 3.x
#   gem install sqlite3
#
#   Ensure the SQLite 3 gem is defined in your Gemfile
#   gem 'sqlite3'
development: &development
  adapter: sqlite3
  database: db/development.sqlite3
  pool: 5
  timeout: 5000

# 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: &test
  adapter: sqlite3
  database: db/test.sqlite3
  pool: 5
  timeout: 5000

production:
  <<: *development
  username: root
  password:

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
kojac-0.17.0 spec/demo/config/database.yml
kojac-0.16.0 spec/demo/config/database.yml
kojac-0.15.0 spec/demo/config/database.yml
kojac-0.13.0 spec/demo/config/database.yml
kojac-0.12.0 spec/demo/config/database.yml
kojac-0.11.0 spec/demo/config/database.yml