Sha256: 8cba5fb12bfa04ac00479face9b445d06dc82409c7d8b7c369cb70cd9b9855a2

Contents?: true

Size: 600 Bytes

Versions: 14

Compression:

Stored size: 600 Bytes

Contents

# SQLite version 3.x
#   gem install sqlite3
#
#   Ensure the SQLite 3 gem is defined in your Gemfile
#   gem 'sqlite3'
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:
  adapter: sqlite3
  database: ":memory:"
#  database: db/test.sqlite3
  pool: 5
  timeout: 5000

production:
  adapter: sqlite3
  database: db/production.sqlite3
  pool: 5
  timeout: 5000

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
action_smser-3.0.0 test/dummy/config/database.yml
action_smser-2.2.0 test/dummy/config/database.yml
action_smser-2.1.2 test/dummy/config/database.yml
action_smser-2.1.1 test/dummy/config/database.yml
action_smser-2.1.0 test/dummy/config/database.yml
action_smser-2.0.2 test/dummy/config/database.yml
action_smser-2.0.1 test/dummy/config/database.yml
action_smser-2.0.0 test/dummy/config/database.yml
action_smser-1.2.1 test/dummy/config/database.yml
action_smser-1.2.0 test/dummy/config/database.yml
action_smser-1.1.1 test/dummy/config/database.yml
action_smser-1.1.0 test/dummy/config/database.yml
action_smser-1.0.1 test/dummy/config/database.yml
action_smser-1.0.0 test/dummy/config/database.yml