Sha256: 80aa6b26f4304ebdf860e095754a1c214868778792c37548e467afd58ffb07b3
Contents?: true
Size: 570 Bytes
Versions: 3
Compression:
Stored size: 570 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:" pool: 5 timeout: 500 production: adapter: sqlite3 database: db/production.sqlite3 pool: 5 timeout: 5000
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
cache_debugging-0.1.1 | test/dummy/config/database.yml |
cache_debugging-0.1.0 | test/dummy/config/database.yml |
cache_debugging-0.0.1 | test/dummy/config/database.yml |