Skip to content

Instantly share code, notes, and snippets.

@arnelbucio
Last active August 29, 2015 13:58
Show Gist options
  • Save arnelbucio/9946442 to your computer and use it in GitHub Desktop.
Save arnelbucio/9946442 to your computer and use it in GitHub Desktop.
Disable Rails assets and RSpec view and helper specs generators
# Disable Rails assets and RSpec view and helper specs generators
config.generators do |g|
g.assets false
g.test_framework :rspec,
view_specs: false,
helper_specs: false
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment