Re: [rspec-users] auto-generated descriptions

2008-07-07 Thread David Chelimsky
On Jul 7, 2008, at 1:47 PM, Ashley Moran wrote: On Jul 04, 2008, at 9:45 pm, David Chelimsky wrote: I'm looking for ways to optimize rspec and came upon something interesting. If I remove handling for auto-generated descriptions (the thing that allows you to say "specify { 5.should == 5 }"

Re: [rspec-users] auto-generated descriptions

2008-07-07 Thread Ashley Moran
On Jul 04, 2008, at 9:45 pm, David Chelimsky wrote: I'm looking for ways to optimize rspec and came upon something interesting. If I remove handling for auto-generated descriptions (the thing that allows you to say "specify { 5.should == 5 }" with no description string) we get an average 3

Re: [rspec-users] auto-generated descriptions

2008-07-07 Thread Zach Dennis
On Fri, Jul 4, 2008 at 10:18 PM, Steve Eley <[EMAIL PROTECTED]> wrote: > On Fri, Jul 4, 2008 at 4:45 PM, David Chelimsky <[EMAIL PROTECTED]> > wrote: > > > > So - how bad do you think this would suck to remove that feature? Are you > > using it yourself? > > I'm not, but would it be impractical to

Re: [rspec-users] auto-generated descriptions

2008-07-05 Thread Yi Wen
+1. This is a smart. On Fri, Jul 4, 2008 at 9:18 PM, Steve Eley <[EMAIL PROTECTED]> wrote: > On Fri, Jul 4, 2008 at 4:45 PM, David Chelimsky <[EMAIL PROTECTED]> wrote: >> >> So - how bad do you think this would suck to remove that feature? Are you >> using it yourself? > > I'm not, but would it be

Re: [rspec-users] auto-generated descriptions

2008-07-04 Thread Scott Taylor
On Jul 4, 2008, at 10:54 PM, Mikel Lindsaar wrote: On Sat, Jul 5, 2008 at 12:18 PM, Steve Eley <[EMAIL PROTECTED]> wrote: On Fri, Jul 4, 2008 at 4:45 PM, David Chelimsky <[EMAIL PROTECTED]> wrote: So - how bad do you think this would suck to remove that feature? Are you using it yourself?

Re: [rspec-users] auto-generated descriptions

2008-07-04 Thread Mikel Lindsaar
On Sat, Jul 5, 2008 at 12:18 PM, Steve Eley <[EMAIL PROTECTED]> wrote: > On Fri, Jul 4, 2008 at 4:45 PM, David Chelimsky <[EMAIL PROTECTED]> wrote: >> So - how bad do you think this would suck to remove that feature? Are you >> using it yourself? > I'm not, but would it be impractical to extract it

Re: [rspec-users] auto-generated descriptions

2008-07-04 Thread Ben Mabey
David Chelimsky wrote: Hey all, I'm looking for ways to optimize rspec and came upon something interesting. If I remove handling for auto-generated descriptions (the thing that allows you to say "specify { 5.should == 5 }" with no description string) we get an average 35% performance increase

Re: [rspec-users] auto-generated descriptions

2008-07-04 Thread Steve Eley
On Fri, Jul 4, 2008 at 4:45 PM, David Chelimsky <[EMAIL PROTECTED]> wrote: > > So - how bad do you think this would suck to remove that feature? Are you > using it yourself? I'm not, but would it be impractical to extract it out into some sort of module or helper and tell people to include it in t

Re: [rspec-users] auto-generated descriptions

2008-07-04 Thread Avdi Grimm
On Fri, Jul 4, 2008 at 4:45 PM, David Chelimsky <[EMAIL PROTECTED]> wrote: > So - how bad do you think this would suck to remove that feature? Are you > using it yourself? Personally, I *love* this feature, and would not like to see it go. One of my heuristics for a good spec is that it either a)

Re: [rspec-users] auto-generated descriptions

2008-07-04 Thread Matt Darby
On Jul 4, 2008, at 4:45 PM, David Chelimsky wrote: So - how bad do you think this would suck to remove that feature? Are you using it yourself? All thoughts welcome. Wasn't even aware that feature existed! ___ rspec-users mailing list rspec-users

[rspec-users] auto-generated descriptions

2008-07-04 Thread David Chelimsky
Hey all, I'm looking for ways to optimize rspec and came upon something interesting. If I remove handling for auto-generated descriptions (the thing that allows you to say "specify { 5.should == 5 }" with no description string) we get an average 35% performance increase per expectation. 3