Sha256: d6c7d3eda5aeea845c34bebbb75e6edbae4cac19353214de93b1157e4ca37f1d
Contents?: true
Size: 621 Bytes
Versions: 3
Compression:
Stored size: 621 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: &TEST adapter: sqlite3 database: db/test.sqlite3 pool: 5 timeout: 5000 production: adapter: sqlite3 database: <%= RubyStation.data_path("production.sqlite3") if defined?(RubyStation) %> pool: 5 timeout: 5000 cucumber: <<: *TEST
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
moneyrail-0.1.5 | config/database.yml |
moneyrail-0.1.4 | config/database.yml |
moneyrail-0.1.2 | config/database.yml |