Sha256: 13d9429b2206b9838546b870056b48ca196f1f931ce22fa4d0c37918ce92dace

Contents?: true

Size: 524 Bytes

Versions: 14

Compression:

Stored size: 524 Bytes

Contents

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

development:
  <<: *default
  database: ':memory:'

# 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: ':memory:'

production:
  <<: *default
  database: ':memory:'

Version data entries

14 entries across 14 versions & 2 rubygems

Version Path
careacademy-acl9-3.4.0 test/dummy/config/database.yml
careacademy-acl9-3.3.0 test/dummy/config/database.yml
acl9-3.2.0 test/dummy/config/database.yml
acl9-3.1.0 test/dummy/config/database.yml
acl9-3.0.0 test/dummy/config/database.yml
acl9-2.1.2 test/dummy/config/database.yml
acl9-2.1.1 test/dummy/config/database.yml
acl9-2.1.0 test/dummy/config/database.yml
acl9-2.0.0 test/dummy/config/database.yml
acl9-1.3.0 test/dummy/config/database.yml
acl9-1.2.1 test/dummy/config/database.yml
acl9-1.2.0 test/dummy/config/database.yml
acl9-1.1.0 test/dummy/config/database.yml
acl9-1.0.0 test/dummy/config/database.yml