Skip to content

Instantly share code, notes, and snippets.

@eitoball
Created December 3, 2019 23:59
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 eitoball/fa2f256b3601ab0a01a458c9fca71081 to your computer and use it in GitHub Desktop.
Save eitoball/fa2f256b3601ab0a01a458c9fca71081 to your computer and use it in GitHub Desktop.
My Rails Template
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