Skip to content

Instantly share code, notes, and snippets.

@Godoy
Created September 29, 2016 19:57
Show Gist options
  • Save Godoy/de15eef2cf5d1d426c67a9ab36556d00 to your computer and use it in GitHub Desktop.
Save Godoy/de15eef2cf5d1d426c67a9ab36556d00 to your computer and use it in GitHub Desktop.
ruby on rails - disable automatic generators
module MyAppRails
class Application < Rails::Application
# ...
config.generators.test_framework false
config.generators.javascripts false
config.generators.helper false
config.generators.stylesheets false
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment