Skip to content

Instantly share code, notes, and snippets.

@salvadorgascon
Created April 9, 2023 02:04
Show Gist options
  • Save salvadorgascon/29d1fb38b40c42040a70050ffc5774a4 to your computer and use it in GitHub Desktop.
Save salvadorgascon/29d1fb38b40c42040a70050ffc5774a4 to your computer and use it in GitHub Desktop.
Disable asset and helper generation in Ruby on Rails
Rails.application.config.generators do |g|
g.assets = false
g.helper = false
g.decorator = false
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment