Last active
April 14, 2016 04:41
-
-
Save Kalimaha/e958068e0cc19d24a36fcda581c5e444 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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