Skip to content

Instantly share code, notes, and snippets.

@ijunaid8989
Last active October 9, 2015 10:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ijunaid8989/e4540e24c3a647ed271b to your computer and use it in GitHub Desktop.
Save ijunaid8989/e4540e24c3a647ed271b to your computer and use it in GitHub Desktop.
My Default for Rails App.
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