When I scaffold I don't want it to generate these files:
invoke jbuilder
create app/views/tests/index.json.jbuilder
create app/views/tests/show.json.jbuilder
But how? in my application.rb I have this:
config.generators do |g|
g.assets false
g.helper false
g.test_framework nil
end