Skip to content

Instantly share code, notes, and snippets.

@yrgoldteeth
Created December 9, 2015 21:47
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 yrgoldteeth/8290fbdd65f5d655c448 to your computer and use it in GitHub Desktop.
Save yrgoldteeth/8290fbdd65f5d655c448 to your computer and use it in GitHub Desktop.
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