[rspec-users] how to stop rspec from creating helper/view specs?

2012-09-14 Thread S Ahmed
I tried adding this to my application.rb: config.generators do |g| g.view_specs false g.helper_specs false end But it didn't stop the generator from creating view/helper specs. What am I doing wrong? Also also tried doing this the configuration section: config.view_specs = false

Re: [rspec-users] how to stop rspec from creating helper/view specs?

2012-09-14 Thread David Chelimsky
On Fri, Sep 14, 2012 at 11:20 AM, S Ahmed sahmed1...@gmail.com wrote: I tried adding this to my application.rb: config.generators do |g| g.view_specs false g.helper_specs false end See Customizing your workflow on http://guides.rubyonrails.org/generators.html According to that, you