Re: [rspec-users] Difference between spec:server and autospec

2009-06-04 Thread Scott Taylor
Hunt Jon wrote: Thanks Scott. I don't get what happens if I add --drb to spec/spec.opts files. If you add --drb to your spec.opts (or you run script/spec --drb spec/my_spec.rb) - you will run your specs through the spec server. Without --drb, rails will load up in a fresh process. The

Re: [rspec-users] Difference between spec:server and autospec

2009-06-04 Thread Hunt Jon
Thanks Scott. I don't get what happens if I add --drb to spec/spec.opts files. Can anybody explain to me, please? On Thu, Jun 4, 2009 at 3:24 PM, Scott Taylor wrote: > Hunt Jon wrote: >> >> What's the difference between spec:server and autospec? >> >> > > I wouldn't recommend using spec server

Re: [rspec-users] Difference between spec:server and autospec

2009-06-03 Thread Scott Taylor
Hunt Jon wrote: What's the difference between spec:server and autospec? I wouldn't recommend using spec server - use spork instead: http://github.com/timcharper/spork/tree/master Both load the rails environment, so that each time you run your tests (with script/spec -X or script/spec --dr

[rspec-users] Difference between spec:server and autospec

2009-06-03 Thread Hunt Jon
What's the difference between spec:server and autospec? I understand spec:server is only for a Rails project while autospec can work with any projects. I read http://wiki.github.com/dchelimsky/rspec/spec_server-autospec-nearly-pure-bdd-joy but couldn't understand it. I leave autotest/autospec r