Skip to content

Instantly share code, notes, and snippets.

@n8rzz
Last active August 29, 2015 14:21
Show Gist options
  • Save n8rzz/9c6949dd7f74c1a6af5a to your computer and use it in GitHub Desktop.
Save n8rzz/9c6949dd7f74c1a6af5a to your computer and use it in GitHub Desktop.
Gemfile
source 'https://rubygems.org'
gem 'rails', '4.2.1'
gem 'devise', '3.4.1'
gem 'pg'
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'omniauth', '~> 1.2.2'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
group :development, :test do
gem 'rspec-rails', '3.2.1'
gem 'capybara', '~> 2.4.4'
gem 'byebug'
gem 'spring'
end
group :test do
gem 'factory_girl_rails', '4.4.1'
gem 'shoulda-matchers', '2.8.0'
gem 'guard-rspec', '4.5.0', require: false
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment