Last active
June 8, 2019 20:34
-
-
Save joallard/1b4c799ddf77b927b948996c8d4ac5f9 to your computer and use it in GitHub Desktop.
My standard gems for a Rails app
This file contains 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
gem "haml" | |
gem 'kramdown' | |
gem 'premailer-rails' | |
group :development, :test do | |
gem 'pry-rails' | |
gem "pry-rescue" | |
gem "pry-stack_explorer" | |
gem "rspec-rails" | |
gem "vcr" | |
gem "webmock" | |
gem "fabrication" | |
end | |
group :development do | |
gem "spring-commands-rspec" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment