Created
December 3, 2019 23:59
-
-
Save eitoball/fa2f256b3601ab0a01a458c9fca71081 to your computer and use it in GitHub Desktop.
My Rails Template
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
gem 'haml-rails' | |
gem_group :development do | |
gem 'factory_bot_rails', group: :test | |
gem 'rubocop', group: :test | |
gem 'rubocop-performance', group: :test | |
gem 'rubocop-rails', group: :test | |
gem 'rspec-rails', group: :test | |
end | |
after_bundle do | |
ENV['DISABLE_SPRING'] = '1' | |
generate(:'rspec:install') | |
run('bundle exec rubocop --auto-gen-conf') | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment