Sha256: c41a5cd65f3b52c8d522f95659d23a77e09c406ae6ecfce83c7c9378e45bccde
Contents?: true
Size: 688 Bytes
Versions: 19
Compression:
Stored size: 688 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 production: adapter: sqlite3 database: db/development.sqlite3 # this is only an example application (in case anybody is using production, so that the database is not blank) pool: 5 timeout: 5000
Version data entries
19 entries across 12 versions & 1 rubygems