Re: [rspec-users] Welcome Pat Maddox

2008-04-05 Thread Zach Dennis
Congrats pat! Zach On Fri, Apr 4, 2008 at 2:34 PM, Pat Maddox [EMAIL PROTECTED] wrote: On Fri, Apr 4, 2008 at 10:26 AM, aslak hellesoy [EMAIL PROTECTED] wrote: On 4/4/08, Luis Lavena [EMAIL PROTECTED] wrote: On Fri, Apr 4, 2008 at 11:35 AM, Patrick Meunier [EMAIL PROTECTED]

Re: [rspec-users] Newbie : how to require to lib from spec under autotest?

2008-04-05 Thread Peter Fitzgibbons
On Sat, Apr 5, 2008 at 6:08 AM, Peter Fitzgibbons [EMAIL PROTECTED] wrote: On Sat, Apr 5, 2008 at 12:03 AM, Scott Taylor [EMAIL PROTECTED] wrote: On Apr 5, 2008, at 12:38 AM, David Chelimsky wrote: On Apr 5, 2008, at 12:28 AM, Peter Fitzgibbons [EMAIL PROTECTED] wrote: Hello

Re: [rspec-users] Newbie : how to require to lib from spec under autotest?

2008-04-05 Thread Pat Maddox
On Sat, Apr 5, 2008 at 8:42 AM, Peter Fitzgibbons [EMAIL PROTECTED] wrote: Where Ruby finds its modules gave me the answer. I needed to set environment variable RUBYLIB export RUBYLIB=./lib:../lib Instead of setting an environment variable before running the app, you can modify the load path

Re: [rspec-users] Welcome Pat Maddox

2008-04-05 Thread Dan North
Let me join everyone else in welcoming you to the rspec developer team. As a notorious non-completer-finisher I can't begin to tell you how pleased I am to see you joining the team, especially given the clarity and high quality of your contributions on this list. Cheers, Dan On 05/04/2008, Zach

Re: [rspec-users] Newbie : how to require to lib from spec under autotest?

2008-04-05 Thread Corey Haines
Sweet! That's a cool command. Thanks for posting! On Sat, Apr 5, 2008 at 11:42 AM, Peter Fitzgibbons [EMAIL PROTECTED] wrote: On Sat, Apr 5, 2008 at 6:08 AM, Peter Fitzgibbons [EMAIL PROTECTED] wrote: On Sat, Apr 5, 2008 at 12:03 AM, Scott Taylor [EMAIL PROTECTED] wrote: On

[rspec-users] Getting to the session from Stories

2008-04-05 Thread Mikel Lindsaar
Hey all, In a story I want to say Given A logged in user do sesson[:logged_in] = true etc... end But the session method doesn't have anything to bind to, I get the error '... while evaluating nil.session...' Any ideas? The fact that the user is logged in or not, doesn't matter to this

Re: [rspec-users] Getting to the session from Stories

2008-04-05 Thread David Chelimsky
On Sat, Apr 5, 2008 at 9:55 PM, Mikel Lindsaar [EMAIL PROTECTED] wrote: Hey all, In a story I want to say Given A logged in user do sesson[:logged_in] = true etc... end But the session method doesn't have anything to bind to, I get the error '... while evaluating