Re: [rspec-users] spec_server doesn't update 'required' files

2007-10-26 Thread David Chelimsky
On 10/25/07, Brian Takita <[EMAIL PROTECTED]> wrote: > Rails handles the reloading of classes and modules. > If you would like to have these files be reloaded, use > require_dependency instead of require. You can also use Rails constant > autoloading facility (not requiring the file) to register th

Re: [rspec-users] spec_server doesn't update 'required' files

2007-10-25 Thread Brian Takita
On 10/25/07, Steve <[EMAIL PROTECTED]> wrote: > On Thu, 25 Oct 2007 20:09:23 -0500, David Chelimsky wrote: > > > On 10/25/07, Steve <[EMAIL PROTECTED]> wrote: > >> I have some specs that 'require' other files. When running spec_server, if > >> these required files are changed, it's not picked up wh

Re: [rspec-users] spec_server doesn't update 'required' files

2007-10-25 Thread Steve
On Thu, 25 Oct 2007 20:09:23 -0500, David Chelimsky wrote: > On 10/25/07, Steve <[EMAIL PROTECTED]> wrote: >> I have some specs that 'require' other files. When running spec_server, if >> these required files are changed, it's not picked up when the specs are >> run. I have to restart spec_server

Re: [rspec-users] spec_server doesn't update 'required' files

2007-10-25 Thread David Chelimsky
On 10/25/07, Steve <[EMAIL PROTECTED]> wrote: > I have some specs that 'require' other files. When running spec_server, if > these required files are changed, it's not picked up when the specs are > run. I have to restart spec_server to get the changes recognized. Is there > an option or some such

[rspec-users] spec_server doesn't update 'required' files

2007-10-25 Thread Steve
I have some specs that 'require' other files. When running spec_server, if these required files are changed, it's not picked up when the specs are run. I have to restart spec_server to get the changes recognized. Is there an option or some such to have spec_server reload required files as well when