Skip to content

Instantly share code, notes, and snippets.

@manoj2411
Last active August 29, 2015 14:20
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 manoj2411/40d6da1426c97684a454 to your computer and use it in GitHub Desktop.
Save manoj2411/40d6da1426c97684a454 to your computer and use it in GitHub Desktop.
Rails application config to skip auto generators.
class Application < Rails::Application
# ...
config.generators do |g|
g.test_framework false
g.scaffold_controller "scaffold_controller"
g.stylesheets false
g.javascripts false
g.helper false
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment