Last active
October 9, 2015 10:38
-
-
Save ijunaid8989/e4540e24c3a647ed271b to your computer and use it in GitHub Desktop.
My Default for Rails App.
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' | |
gem 'rails', 'XXXX' | |
gem 'sass-rails', '~> 5.0' | |
gem 'uglifier', '>= 1.3.0' | |
gem 'coffee-rails', '~> 4.1.0' | |
gem 'jquery-rails' | |
gem 'turbolinks' | |
gem 'jbuilder', '~> 2.0' | |
gem 'bcrypt', '~> 3.1.5' , :require => 'bcrypt' | |
gem 'sdoc', '~> 0.4.0', group: :doc | |
group :development, :test do | |
gem 'byebug' | |
gem 'web-console', '~> 2.0' | |
gem 'spring' | |
gem 'sqlite3' | |
end | |
group :production do | |
gem 'pg' | |
end | |
gem 'rails_12factor', group: :production |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment