Skip to content

Instantly share code, notes, and snippets.

@cannikin
Created November 20, 2015 20:54
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 cannikin/a19a98898aecc017475c to your computer and use it in GitHub Desktop.
Save cannikin/a19a98898aecc017475c to your computer and use it in GitHub Desktop.
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