Skip to content

Instantly share code, notes, and snippets.

@nicbet
Last active April 8, 2019 16:33
Show Gist options
  • Save nicbet/44daee3418153960d45c19036ed7f0e7 to your computer and use it in GitHub Desktop.
Save nicbet/44daee3418153960d45c19036ed7f0e7 to your computer and use it in GitHub Desktop.
Declutter Rails Generators
# config/application.rb

# Generators
    config.generators do |g|
      g.test_framework(false)
      g.stylesheets(false)
      g.javascripts(false)
      g.helper(false)
      g.channel(assets: false)
    end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment