Last active
August 29, 2015 14:20
-
-
Save manoj2411/40d6da1426c97684a454 to your computer and use it in GitHub Desktop.
Rails application config to skip auto generators.
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
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