Created
March 13, 2015 20:21
-
-
Save ysheng26/fde581321a79c0d2d846 to your computer and use it in GitHub Desktop.
rails tutorial gemfile
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', '4.2.0' | |
gem 'sass-rails', '5.0.1' | |
gem 'uglifier', '2.5.3' | |
gem 'coffee-rails', '4.1.0' | |
gem 'jquery-rails', '4.0.3' | |
gem 'turbolinks', '2.3.0' | |
gem 'jbuilder', '2.2.3' | |
gem 'sdoc', '0.4.0', group: :doc | |
group :development, :test do | |
gem 'sqlite3', '1.3.9' | |
gem 'byebug', '3.4.0' | |
gem 'web-console', '2.0.0.beta3' | |
gem 'spring', '1.1.3' | |
end | |
group :production do | |
gem 'pg', '0.17.1' | |
gem 'rails_12factor', '0.0.2' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment