Created
February 15, 2023 00:57
-
-
Save simonhlee97/f52ddabe572852c1cb52d3cc88cb4699 to your computer and use it in GitHub Desktop.
common gems - basic starter for Rails projects
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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