Re: [rspec-users] After upgrade to newest TM Bundle I get Invalid char error

2009-09-14 Thread Chad Humphries
Steffen, What ruby version do you have? i.e. /usr/bin/ruby -v -- Chad On Sep 14, 2009, at 2:32 PM, Steffen Hiller wrote: Hey, I finally upgraded from a rather old RSpec Textmate Bundle to the newest version. (master:efe49e) But when running any commands such as Run Examples or

Re: [rspec-users] [RSpec] rcov and/or rexml bug?

2009-02-13 Thread Chad Humphries
Githubs recent gem builder changes have caused some issues with this. We are looking into it today in more detail. Pulling it down and manually building should definitely work in the meantime. -- Chad Humphries spicycode On Feb 13, 2009, at 4:01 AM, Fernando Perez wrote: You

Re: [rspec-users] plans for cucumber

2008-09-23 Thread Chad Humphries
I have one question outside of rspec land in regards to cucumber. I've used it with test unit, test spec, and rspec without issue. Will it still be a relatively easy require to use on projects outside of rspec? More specifically, is the plan to have it replace story runner within rspec, or to

Re: [rspec-users] RCov / RSpec segfaults on Ubuntu

2008-09-13 Thread Chad Humphries
I've got a version of rcov up at github (sudo gem install spicycode-rcov --source=http://gems.github.com/) incorporating many of the fixes for rcov segfaults. So far none of the old standard crashes have crept back up. Give it a try and let me know how it works for you. -- Chad On Sat, Sep

Re: [rspec-users] ANN: RSpactor 0.9.10 (aka. beta)

2008-04-28 Thread Chad Humphries
Very cool, I'll try it out tomorrow. -- Chad On Mon, Apr 28, 2008 at 8:08 PM, Corey Haines [EMAIL PROTECTED] wrote: I'm using rspactor now over autotest. I'll give the beta a shot. -Corey On Mon, Apr 28, 2008 at 3:51 PM, rubyphunk [EMAIL PROTECTED] wrote: Hey all. I've just

Re: [rspec-users] Welcome Pat Maddox

2008-04-07 Thread Chad Humphries
Congrats Pat! -- Chad On Fri, Apr 4, 2008 at 2:52 PM, Andrew WC Brown [EMAIL PROTECTED] wrote: Gooble Goble, Gooble Goble, One of Us! One of Us! On Fri, Apr 4, 2008 at 2:42 PM, Brian Takita [EMAIL PROTECTED] wrote: On Fri, Apr 4, 2008 at 10:26 AM, aslak hellesoy [EMAIL PROTECTED]

Re: [rspec-users] OT local version control?

2008-01-27 Thread Chad Humphries
A good thing to note is that you can run many of the distributed scm tools in a 'svn wrapper' mode to ease transition with existing repositories. That made the switch much easier for me. - Chad On Jan 27, 2008 5:00 PM, Dan North [EMAIL PROTECTED] wrote: I can see this descending into a

Re: [rspec-users] Rails: Specing libraries

2007-12-22 Thread Chad Humphries
') describe MyExtension do ... end And that should about do it. -- Chad Humphries http://spicycode.com/ On Dec 22, 2007, at 1:17 PM, Caleb Land wrote: I was reading the documentation on using rails with rspec and I didn't see anything about how to spec libraries in the rails /lib directory

Re: [rspec-users] Installation Trouble

2007-12-19 Thread Chad Humphries
Also, could you post the spec if possible? - Chad On Dec 19, 2007, at 10:11 AM, David Chelimsky wrote: On Dec 19, 2007 8:46 AM, Ben Greenberg [EMAIL PROTECTED] wrote: David Chelimsky wrote: On Dec 19, 2007 7:31 AM, Ben Greenberg [EMAIL PROTECTED] wrote: Hey all, I'm new to BDD

Re: [rspec-users] 'it' duplicate example: BUG

2007-11-21 Thread Chad Humphries
One of the recent trunk changesets modified the default behaviour to fail fast if duplicate examples are detected within a single behaviour/ example group. This is basically letting you know you have to it blocks in the behaviour with the same description. Note: You may have this issue

Re: [rspec-users] [rspec-devel] help anyone?

2007-11-18 Thread Chad Humphries
David, The move should be complete now. -Chad On Nov 18, 2007, at 5:26 PM, David Chelimsky wrote: On Nov 18, 2007 4:16 PM, Jonathan Linowes [EMAIL PROTECTED] wrote: David, If no one else offers a more efficient solution, I'm willing to manually copy the open tickets. (I count 37 of

Re: [rspec-users] Spec/Test Speed

2007-10-07 Thread Chad Humphries
, 2007, at 12:31 AM, Chad Humphries wrote: Scott, I don't really have a lot to contribute on how to make it faster, other than to outline what we've been doing on our projects. On one of our current projects we have the following 2570 examples that run in ~70 seconds on our pairing stations

Re: [rspec-users] Spec/Test Speed

2007-10-06 Thread Chad Humphries
Scott, I don't really have a lot to contribute on how to make it faster, other than to outline what we've been doing on our projects. On one of our current projects we have the following 2570 examples that run in ~70 seconds on our pairing stations (mac minis, 1.83 c2d). In general across

Re: [rspec-users] Failure Messages in RSpec

2007-09-04 Thread Chad Humphries
I generally write custom expectation matchers when I want more specific information on failure scenarios. Granted this might not work in all scenarios (taking time to write a custom matcher I mean), but for most things it has made it very nice. -Chad On Sep 4, 2007, at 5:08 PM, Jay Levitt

Re: [rspec-users] Deprecating the mocking framework?

2007-09-03 Thread Chad Humphries
Zach, I believe version 0.7.0 has the global ordering you are looking for: Version 0.7.0 Added and_yield as an expectation clause. Inspect on Mocks now yield a more consise description. Global ordering across all mocks in a container is now allowed. Added support for Demeter chain mocking.