Skip to content

Instantly share code, notes, and snippets.

@ushu
Created December 5, 2013 16:12
Show Gist options
  • Save ushu/7808214 to your computer and use it in GitHub Desktop.
Save ushu/7808214 to your computer and use it in GitHub Desktop.
Disable rspec generators
# in config/application.rb
config.generators do |g|
g.test_framework :rspec, fixture_replacement: :factory_girl
g.fixture false
g.view_specs false
g.helper_specs false
g.controller_specs false
g.routing_specs false
g.factory_girl false
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment