Re: [rspec-users] Spork

2010-03-31 Thread Ashley Moran
On Mar 29, 2010, at 9:04 pm, David Chelimsky wrote: How wide-reaching are your changes? i.e. how many files, etc? I think it's only really the Runner stuff that's changed. I've split it into InProcess and DRbProxy or some such... although I think really the DRb stuff belongs higher up.

[rspec-users] Spork

2010-03-29 Thread Ashley Moran
Hi Hopefully I'll get chance to finish Spork integration with RSpec 2 this weekend. I've got two questions... (1) What's the best way to merge my changes back in? My shockingly bad Git-fu has made it impossible to rebase on top of master. I suspect having a (now disabled) Textmate macro

Re: [rspec-users] Spork

2010-03-29 Thread David Chelimsky
On Mar 29, 2010, at 2:48 PM, Ashley Moran wrote: Hi Hopefully I'll get chance to finish Spork integration with RSpec 2 this weekend. I've got two questions... (1) What's the best way to merge my changes back in? My shockingly bad Git-fu has made it impossible to rebase on top of

Re: [rspec-users] Spork

2010-03-29 Thread steve ross
On Mar 29, 2010, at 1:04 PM, David Chelimsky wrote: On Mar 29, 2010, at 2:48 PM, Ashley Moran wrote: (2.5) Any reason why the new RSpec module is Rspec not RSpec? /grammarnazi AFAIK, autoloaders (like in Rails and Autotest), assume a CamelCase convention for class names, which RSpec

[rspec-users] Spork in RSpec 2

2010-03-10 Thread Ashley Moran
Hi I've just started using RSpec 2 in Rails 3 and I'm incredibly frustrated by the time it takes to boot Rails, it's a real TDD bottleneck. The obvious solution is Spork, which is currently not possible with RSpec 2 because it lacks DRb support[1]. I've cloned RSpec and I'm about to start

Re: [rspec-users] Spork in RSpec 2

2010-03-10 Thread David Chelimsky
On Wed, Mar 10, 2010 at 7:31 AM, Ashley Moran ashley.mo...@patchspace.co.uk wrote: Hi I've just started using RSpec 2 in Rails 3 and I'm incredibly frustrated by the time it takes to boot Rails, it's a real TDD bottleneck.  The obvious solution is Spork, which is currently not possible with

Re: [rspec-users] Spork in RSpec 2

2010-03-10 Thread Ashley Moran
On Mar 10, 2010, at 1:46 pm, David Chelimsky wrote: AFAIK, no. Please add a comment to the issue saying you're working on it. Done. * are there any potential issues that people with RSpec 2 knowledge can forsee? I don't want to lose time on known gotchas. * You will need the other gems

Re: [rspec-users] spork doesn't find helpers

2009-11-28 Thread Matt Wynne
I should try asking about this on http://groups.google.com/group/sporkgem On 28 Nov 2009, at 00:52, Martin wrote: I forgot to tell you the versions I'm using: spork: 0.7.3 rspec: 1.2.9 rails: 2.3.5 Hi, I'm running into a problem with spork: The helper methods in

[rspec-users] spork doesn't find helpers

2009-11-27 Thread Martin
Hi, I'm running into a problem with spork: The helper methods in app/helpers/simpler_helper.rb are not found when using spork: rake spec (in longPath/test1) ..F.. 1) ActionView::TemplateError in '/items/index.html.erb renders a list of items' undefined method

Re: [rspec-users] spork doesn't find helpers

2009-11-27 Thread Martin
I forgot to tell you the versions I'm using: spork: 0.7.3 rspec: 1.2.9 rails: 2.3.5 Hi, I'm running into a problem with spork: The helper methods in app/helpers/simpler_helper.rb are not found when using spork: rake spec (in longPath/test1) ..F.. 1)

[rspec-users] Spork 0.57

2009-06-19 Thread Yi Wen
Hello, I has spork 0.5.0 and worked fine. now I updated to spork 0.5.7 which seems to break the existing setting. The stack trace looks like this: Using RSpec Preloading Rails environment Loading Spork.prefork block... uninitialized constant MissingSourceFile (NameError)

Re: [rspec-users] Spork 0.57

2009-06-19 Thread David Chelimsky
On Fri, Jun 19, 2009 at 9:33 AM, David Chelimskydchelim...@gmail.com wrote: On Fri, Jun 19, 2009 at 9:24 AM, Yi Wenhayafi...@gmail.com wrote: Hello, I has spork 0.5.0 and worked fine. now I updated to spork 0.5.7 which seems to break the existing setting. The stack trace looks like this:

Re: [rspec-users] Spork 0.57

2009-06-19 Thread David Chelimsky
On Fri, Jun 19, 2009 at 9:24 AM, Yi Wenhayafi...@gmail.com wrote: Hello, I has spork 0.5.0 and worked fine. now I updated to spork 0.5.7 which seems to break the existing setting. The stack trace looks like this: Using RSpec Preloading Rails environment Loading Spork.prefork block...

Re: [rspec-users] Spork and Merb and rSpec

2009-06-18 Thread Andy Shipman
On 16 Jun 2009, at 22:11, Tim Harper wrote: I'm interested to hear your experience with Spork and Merb. Right now Spork is doing some hooks in to rails (that are actually kind of aggressive right now) to help make spork work more out of the box - specifically, preventing rails from

Re: [rspec-users] Spork and Merb and rSpec

2009-06-16 Thread Tim Harper
I'm interested to hear your experience with Spork and Merb. Right now Spork is doing some hooks in to rails (that are actually kind of aggressive right now) to help make spork work more out of the box - specifically, preventing rails from preloading application models and controllers before the

[rspec-users] Spork and Merb and rSpec

2009-06-15 Thread Andy Shipman
When running spork on a merb application, whenever a spec is run I get the following error from the Spork server. /opt/local/lib/ruby/gems/1.8/gems/merb-core-1.0.11/lib/merb-core/ bootloader.rb:1358: [BUG] rb_gc_mark(): unknown data type 0x3c(0x2203d0) non object ruby 1.8.7 (2009-06-08

Re: [rspec-users] Spork and Merb and rSpec

2009-06-15 Thread Scott Taylor
Andy Shipman wrote: When running spork on a merb application, whenever a spec is run I get the following error from the Spork server. /opt/local/lib/ruby/gems/1.8/gems/merb-core-1.0.11/lib/merb-core/bootloader.rb:1358: [BUG] rb_gc_mark(): unknown data type 0x3c(0x2203d0) non object ruby

Re: [rspec-users] Spork and Merb and rSpec

2009-06-15 Thread Andy Shipman
On 15 Jun 2009, at 14:43, Scott Taylor wrote: Andy Shipman wrote: When running spork on a merb application, whenever a spec is run I get the following error from the Spork server. /opt/local/lib/ruby/gems/1.8/gems/merb-core-1.0.11/lib/merb-core/ bootloader.rb:1358: [BUG] rb_gc_mark():

Re: [rspec-users] Spork and Merb and rSpec

2009-06-15 Thread Scott Taylor
On Jun 15, 2009, at 4:11 PM, Andy Shipman wrote: On 15 Jun 2009, at 14:43, Scott Taylor wrote: Andy Shipman wrote: When running spork on a merb application, whenever a spec is run I get the following error from the Spork server.

Re: [rspec-users] Spork and Merb and rSpec

2009-06-15 Thread Ben Mabey
Scott Taylor wrote: On Jun 15, 2009, at 4:11 PM, Andy Shipman wrote: On 15 Jun 2009, at 14:43, Scott Taylor wrote: Andy Shipman wrote: When running spork on a merb application, whenever a spec is run I get the following error from the Spork server.