Re: [rspec-users] $LOAD_PATH problem when creating rake task

2008-07-29 Thread Luis Lavena
On Tue, Jul 29, 2008 at 11:45 AM, Tero Tilus <[EMAIL PROTECTED]> wrote: > I'm trying to put together some rake tasks to run my specs, but > require 'spec/rake/spectask' complains "no such file". I've gem > installed rspec on my Ubuntu box and looks like it's locate in > /var/lib/gems/1.8/gems/rspe

Re: [rspec-users] $LOAD_PATH problem when creating rake task

2008-07-29 Thread Tero Tilus
2008-07-29 11:59, Luis Lavena: > Did you require rubygems first? Oh dear! You made my day. \o/ -- Tero Tilus ## 050 3635 235 ## http://www.tilus.net/koti/tero/ ___ rspec-users mailing list rspec-users@rubyforge.org http://rubyforge.org/mailman/listin

[rspec-users] $LOAD_PATH problem when creating rake task

2008-07-29 Thread Tero Tilus
I'm trying to put together some rake tasks to run my specs, but require 'spec/rake/spectask' complains "no such file". I've gem installed rspec on my Ubuntu box and looks like it's locate in /var/lib/gems/1.8/gems/rspec-1.1.4/, which is not in load path irb> $LOAD_PATH => ["/usr/local/lib/site_ru

Re: [rspec-users] $LOAD_PATH problem when creating rake task

2008-07-29 Thread Luis Lavena
On Tue, Jul 29, 2008 at 12:09 PM, Tero Tilus <[EMAIL PROTECTED]> wrote: > 2008-07-29 11:59, Luis Lavena: >> Did you require rubygems first? > > Oh dear! You made my day. \o/ > Sorry, I'm not a native english speaker, that means it worked? :-) -- Luis Lavena AREA 17 - Human beings, who are almo

Re: [rspec-users] $LOAD_PATH problem when creating rake task

2008-07-29 Thread Tero Tilus
2008-07-29 12:14, Luis Lavena: > > Oh dear! You made my day. \o/ > that means it worked? :-) Yes. :) -- Tero Tilus ## 050 3635 235 ## http://www.tilus.net/koti/tero/ ___ rspec-users mailing list rspec-users@rubyforge.org http://rubyforge.org/mailman

Re: [rspec-users] HTML Story Formatter

2008-07-29 Thread Joseph Wilk
> Ahh, good to know. Does that mean that the HTML isn't outputted until > all of the scenario's are ran for a particular story? Exactly. It made the html much nicer but did loose that per scenario output. I added a progress bar formatter so I could still get that direct scenario feedback, be it

Re: [rspec-users] Autotest quits when code has errors

2008-07-29 Thread Evan Dorn
Mark Wilden wrote: > On Mon, Jul 28, 2008 at 3:10 PM, Evan Dorn <[EMAIL PROTECTED]> wrote: > > > It sounds like it might be an RSpec 1.1.5 thing. I've used 1.1.4 with > autotest without seeing the problem you describe. > I have the same problem on projects that use Test::Unit, too, at least for

Re: [rspec-users] Clear a stub

2008-07-29 Thread Scott Taylor
On Jul 29, 2008, at 12:31 AM, Steve wrote: Pat Maddox wrote: etc. It's super weird that it works in every other place but not here. So I'd start from the tiniest thing possible and add lines until you find one that breaks it. Pat So I went through and took the whole thing apart. It turns o