Created
November 20, 2015 20:54
-
-
Save cannikin/a19a98898aecc017475c 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
source 'https://rubygems.org' | |
# Gems needed for edge rails | |
gem 'rails', github: "rails/rails" | |
gem 'sprockets-rails', github: "rails/sprockets-rails" | |
gem 'sprockets', github: "rails/sprockets" | |
gem 'sass-rails', github: "rails/sass-rails" | |
gem 'arel', github: "rails/arel" | |
gem 'rack', github: "rack/rack" | |
gem 'jquery-rails' | |
gem 'turbolinks' | |
gem 'jbuilder', '~> 2.0' | |
gem 'bcrypt', '~> 3.1.7' | |
gem 'slim-rails' | |
gem 'dotenv' | |
group :development, :test do | |
gem 'byebug' | |
gem 'sqlite3' | |
end | |
group :development do | |
gem 'web-console', github: 'rails/web-console' | |
gem 'spring' | |
gem 'listen', '~> 3.0.4' # https://github.com/guard/listen#listen-adapters | |
gem 'uglifier', '>= 1.3.0' | |
gem 'therubyracer', platforms: :ruby | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment