Re: [rspec-users] Ignore directory with Autotest?

2007-10-09 Thread Dominic Sisneros
Then it is a matter of changing your code or adding a .autotest like so: Autotest.add_hook :run do |at| at.exceptions = /generated_output/ end This allows you to ignore directories that match a regexp. Unfortunately, there is no hook in Autotest to allow you to ignore single file regexp which

Re: [rspec-users] [ANN] Lighthouse and Engine Yard sponsorships

2007-11-21 Thread Dominic Sisneros
There is a msys branch of git that is extremely easy to install in windows from this url: http://code.google.com/p/msysgit/ I tried it and it seems to work pretty well On Nov 19, 2007 2:57 PM, Kevin Williams <[EMAIL PROTECTED]> wrote: > On Nov 19, 2007 8:55 AM, Luis Lavena <[EMAIL PROTECTED]> wro

[rspec-users] svn externals and git submodules

2008-03-18 Thread Dominic Sisneros
This is a request to split up the repository into at least two repositories rspec rspec_core (loaded as svn_external or git submodule) rspec_on_rails (loaded as svn_external or git submodule) We could load the plugins the same way as before ruby script/plugin install http://rspec.rubyforg

Re: [rspec-users] svn externals and git submodules

2008-03-18 Thread Dominic Sisneros
rails/plugin is git aware already in trunk for cloning a git repository. However, you can only clone from the git repository root (the directory which contains the .git directory). You can't clone from a subdirectory. That's why the project needs to be split to install both rspec and rspec_on_rail