Skip to content

Instantly share code, notes, and snippets.

@jaybrueder
Created December 6, 2015 13:14
Show Gist options
  • Save jaybrueder/d9a79eac646cba092f71 to your computer and use it in GitHub Desktop.
Save jaybrueder/d9a79eac646cba092f71 to your computer and use it in GitHub Desktop.
Automatic Testing: environments.rb
configure :development do
set :database, {adapter: 'sqlite3', database: 'blog_dev.sqlite3'}
set :show_exceptions, true
end
configure :test do
set :database, {adapter: 'sqlite3', database: 'blog_test.sqlite3'}
set :show_exceptions, true
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment