Skip to content

Instantly share code, notes, and snippets.

@Kalimaha
Last active April 14, 2016 04:41
Show Gist options
  • Select an option

  • Save Kalimaha/e958068e0cc19d24a36fcda581c5e444 to your computer and use it in GitHub Desktop.

Select an option

Save Kalimaha/e958068e0cc19d24a36fcda581c5e444 to your computer and use it in GitHub Desktop.
# Use sqlite3 as the database for Active Record
# gem 'sqlite3'
# PostgreSQL
gem 'pg'
# Use SQLite in the test and development environments
group :development, :test do
gem 'sqlite3'
gem 'byebug'
end
group :development do
gem 'web-console', '~> 2.0'
gem 'spring'
gem 'sqlite3'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment