Skip to content

Instantly share code, notes, and snippets.

@partydrone
Created July 16, 2017 04:32
Show Gist options
  • Save partydrone/9acc672b768447f550deac6fe0054710 to your computer and use it in GitHub Desktop.
Save partydrone/9acc672b768447f550deac6fe0054710 to your computer and use it in GitHub Desktop.
Rails 5.1 template
##
# Authentication & Authorization
gem 'omniauth-facebook'
gem 'omniauth-google-oauth2'
# gem 'omniauth-identity'
gem 'omniauth-twitter'
gem 'pundit'
gem 'rolify'
##
# Background jobs
gem 'redis'
gem 'sidekiq'
##
# Caching
gem 'redis-rails'
gem_group :development, :test do
gem 'guard'
gem 'guard-minitest'
gem 'minitest-rails'
gem 'minitest-rails-capybara'
gem 'minitest-reporters'
end
gem_group :development do
gem 'pry-rails'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment