Skip to content

Instantly share code, notes, and snippets.

@simonhlee97
Created February 15, 2023 00:57
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 simonhlee97/f52ddabe572852c1cb52d3cc88cb4699 to your computer and use it in GitHub Desktop.
Save simonhlee97/f52ddabe572852c1cb52d3cc88cb4699 to your computer and use it in GitHub Desktop.
common gems - basic starter for Rails projects
# better error messages
gem 'better_errors'
# authentication
gem 'devise'
# roles and authorization
gem 'cancancan'
# preview emails in browser
gem 'letter_opener'
# testing
gem 'rspec-rails'
gem 'shoulda-matchers'
# allows you to do fast remote deployments of you website, as multiple environments are supported and all the work is done in only one SSH session
gem 'mina'
# forms
gem 'simple_form'
# factory_girl provides a framework and DSL for defining and using factories - less error-prone, more explicit, and all-around easier to work with than fixtures.
gem 'factory_girl'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment