Skip to content

Instantly share code, notes, and snippets.

@arnelbucio
Last active August 29, 2015 13:58
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