Sha256: 11b2a70b920674b3b51b17d62d835c0c15ce69eeb7a22f393531cb9d70b63aeb

Contents?: true

Size: 669 Bytes

Versions: 13

Compression:

Stored size: 669 Bytes

Contents

# SQLite version 3.x
#   gem install sqlite3-ruby (not necessary on OS X Leopard)
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

13 entries across 13 versions & 2 rubygems

Version Path
social_stream-0.5.2 spec/dummy/config/database.yml
social_stream-base-0.5.2 spec/dummy/config/database.yml
social_stream-0.5.1 spec/dummy/config/database.yml
social_stream-base-0.5.1 spec/dummy/config/database.yml
social_stream-0.5.0 spec/dummy/config/database.yml
social_stream-base-0.5.0 spec/dummy/config/database.yml
social_stream-0.4.6 spec/dummy/config/database.yml
social_stream-0.4.5 spec/dummy/config/database.yml
social_stream-0.4.4 spec/dummy/config/database.yml
social_stream-0.4.3 spec/dummy/config/database.yml
social_stream-0.4.2 spec/dummy/config/database.yml
social_stream-0.4.1 spec/dummy/config/database.yml
social_stream-0.4.0 spec/dummy/config/database.yml