Sha256: ef689c188c13c999e69de012c2aa63d5569d3167978bd0b0e3dc601ddd3d452d
Contents?: true
Size: 674 Bytes
Versions: 12
Compression:
Stored size: 674 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. rails_env: adapter: sqlite3 database: db/development.sqlite3 pool: 5 timeout: 5000 production: adapter: sqlite3 database: db/production.sqlite3 pool: 5 timeout: 5000 test: adapter: sqlite3 database: db/production.sqlite3 pool: 5 timeout: 5000
Version data entries
12 entries across 12 versions & 1 rubygems