Question

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
Was it helpful?

Solution

Use

config.generators.jbuilder = false

or

config.generators do |g|
  g.assets            false
  g.helper            false
  g.test_framework    nil
  g.jbuilder          false
end

OTHER TIPS

Deleting or commenting out jbuilder from you Gemfile will do the trick.

https://stackoverflow.com/a/24104811/5521564

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top