Created
September 29, 2016 19:57
-
-
Save Godoy/de15eef2cf5d1d426c67a9ab36556d00 to your computer and use it in GitHub Desktop.
ruby on rails - disable automatic generators
This file contains 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
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