Last active
August 29, 2015 13:58
-
-
Save arnelbucio/9946442 to your computer and use it in GitHub Desktop.
Disable Rails assets and RSpec view and helper specs generators
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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