Created
December 9, 2015 21:47
-
-
Save yrgoldteeth/8290fbdd65f5d655c448 to your computer and use it in GitHub Desktop.
This file contains 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.5' | |
gem 'pg' | |
gem 'sass-rails', '~> 5.0' | |
gem 'bootstrap-sass' | |
gem 'uglifier', '>= 1.3.0' | |
gem 'coffee-rails', '~> 4.1.0' | |
# See https://github.com/rails/execjs#readme for more supported runtimes | |
gem 'therubyracer', platforms: :ruby | |
gem 'jquery-rails' | |
gem 'turbolinks' | |
# bundle exec rake doc:rails generates the API under doc/api. | |
gem 'sdoc', '~> 0.4.0', group: :doc | |
# Use ActiveModel has_secure_password | |
gem 'bcrypt', '~> 3.1.7' | |
# ActiveModel has_one_time_password for 2FA | |
gem 'active_model_otp' | |
gem 'dalli' | |
gem 'haml' | |
gem 'puma' | |
gem 'version' | |
gem 'pry-rails' | |
gem 'kaminari' | |
group :development do | |
gem 'capistrano' | |
gem 'capistrano-chruby' | |
gem 'capistrano-rails' | |
gem 'capistrano-bundler' | |
end | |
group :development, :test do | |
gem 'factory_girl_rails' | |
gem 'brakeman', require: false | |
gem 'faker' | |
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring | |
gem 'spring' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment