Last active
November 9, 2015 06:33
-
-
Save sapslaj/33aef28b2a4e42da1f83 to your computer and use it in GitHub Desktop.
The base Gemfile I use for most Rails projects
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
| source 'https://rubygems.org' | |
| # Backend Gems | |
| gem 'rails' | |
| gem 'sqlite3' | |
| gem 'sass-rails' | |
| gem 'uglifier' | |
| gem 'coffee-rails' | |
| gem 'jbuilder' | |
| gem 'sorcery' | |
| # Frontend Gems | |
| gem 'jquery-rails' | |
| gem 'bootstrap-sass' | |
| source 'https://rails-assets.org' do | |
| end | |
| # Testing and development Gems | |
| group :development, :test do | |
| gem 'byebug' | |
| gem 'pry-rails' | |
| gem 'pry-byebug' | |
| gem 'web-console' | |
| gem 'spring' | |
| gem 'guard' | |
| gem 'guard-minitest' | |
| gem 'guard-rails' | |
| gem 'factory_girl_rails' | |
| gem 'faker' | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment