Skip to content

Instantly share code, notes, and snippets.

@edwinlab
Last active November 5, 2016 14:55
Show Gist options
  • Save edwinlab/897f7ca9f15d08c2ddef712c8b46357b to your computer and use it in GitHub Desktop.
Save edwinlab/897f7ca9f15d08c2ddef712c8b46357b to your computer and use it in GitHub Desktop.
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.6'
# Use sqlite3 as the database for Active Record
gem 'sqlite3'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 2.0'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
end
group :test do
gem "rspec-rails"
gem "factory_girl_rails"
gem 'ffaker'
gem 'shoulda-matchers'
end
gem "devise"
# rails g rspec:install
# rails g devise:install
# rails g devise User
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment