Re: [rspec-users] Controller stub and helper spec with lastest beta

2010-07-25 Thread chatgris
Thank you for those advices David. It wasn't related to bundler. I did a big clean up in spec_helper.rb and in my gem list. I still had rspec.rake in lib/tasks/ . Now, everything works as expected via autotest or rake:spec. Thanks. Julien On 24 juil, 17:24, David Chelimsky wrote: > On Jul

Re: [rspec-users] Controller stub and helper spec with lastest beta

2010-07-24 Thread Wincent Colaiuta
El 24/07/2010, a las 16:33, chatgris escribió: > I have two issues with beta 2.0.0.beta.18. First, here's the gems : > > gem "rails", "3.0.0.beta4" > gem "mongoid", "2.0.0.beta10" > > group :test do > gem "rspec-rails", "2.0.0.beta.18" > gem "factory_girl_rails", "1.0" > end [snip] > That gi

Re: [rspec-users] Controller stub and helper spec with lastest beta

2010-07-24 Thread David Chelimsky
On Jul 24, 2010, at 9:33 AM, chatgris wrote: > Hello, > > I have two issues with beta 2.0.0.beta.18. First, here's the gems : > > gem "rails", "3.0.0.beta4" > gem "mongoid", "2.0.0.beta10" > > group :test do > gem "rspec-rails", "2.0.0.beta.18" > gem "factory_girl_rails", "1.0" > end > > My

[rspec-users] Controller stub and helper spec with lastest beta

2010-07-24 Thread chatgris
Hello, I have two issues with beta 2.0.0.beta.18. First, here's the gems : gem "rails", "3.0.0.beta4" gem "mongoid", "2.0.0.beta10" group :test do gem "rspec-rails", "2.0.0.beta.18" gem "factory_girl_rails", "1.0" end My spec_helper : http://github.com/chatgris/blabbr/blob/spec/spec/spec_he