Sha256: 14b73fdb49f98c5816d83943a414bcee7a580518d429728174adaa34c029d3bf

Contents?: true

Size: 707 Bytes

Versions: 34

Compression:

Stored size: 707 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: db/test.sqlite3
  pool: 5
  timeout: 5000

test_pg:
  adapter: postgresql
  encoding: unicode
  database: social_stream_test
  pool: 5
  username: social_stream
  password:

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

Version data entries

34 entries across 34 versions & 2 rubygems

Version Path
social_stream-0.11.0 spec/dummy/config/database.yml
social_stream-0.10.4 spec/dummy/config/database.yml
social_stream-0.10.3 spec/dummy/config/database.yml
social_stream-0.10.2 spec/dummy/config/database.yml
social_stream-0.10.1 spec/dummy/config/database.yml
social_stream-0.10.0 spec/dummy/config/database.yml
social_stream-0.9.7 spec/dummy/config/database.yml
social_stream-0.9.6 spec/dummy/config/database.yml
social_stream-0.9.5 spec/dummy/config/database.yml
social_stream-0.9.4 spec/dummy/config/database.yml
social_stream-0.9.3 spec/dummy/config/database.yml
social_stream-0.9.2 spec/dummy/config/database.yml
social_stream-0.9.1 spec/dummy/config/database.yml
social_stream-0.9.0 spec/dummy/config/database.yml
social_stream-0.8.0 spec/dummy/config/database.yml
social_stream-0.7.8 spec/dummy/config/database.yml
social_stream-0.7.7 spec/dummy/config/database.yml
social_stream-0.7.5 spec/dummy/config/database.yml
social_stream-0.7.4 spec/dummy/config/database.yml
social_stream-0.7.3 spec/dummy/config/database.yml