Skip Menu |

This queue is for tickets about the Test-Continuous CPAN distribution.

Report information
The Basics
Id: 66822
Status: resolved
Priority: 0/
Queue: Test-Continuous

People
Owner: Nobody in particular
Requestors: runeni [...] redpill-linpro.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: Filter out vim swap files
Date: Wed, 23 Mar 2011 21:05:53 +0100
To: bug-test-continuous [...] rt.cpan.org
From: Rune Mydske Nielsen <runeni [...] redpill-linpro.com>
Hi, I really find Test::Continuous a cool project, but it would be nice to filter out watching swap files made by such a popular editor as vim. The code comment says it is excluding vim but it really isn't. The swap names are in this format: .Foo.pm.swp. I have attached a patch that changes line 132 in Test/Continuous.pm (version 0.69). from: exclude => [qr/\.(git|svn)/, qr(~$), qr(\.#.*$)] to: exclude => [qr/\.(git|svn)/, qr(~$), qr(\.#.*$), qr/\..*\.swp$/] Best regards, Rune -- Rune Mydske Nielsen Senior systemutvikler / Senior system developer Redpill Linpro AS - Changing the game Email: runeni@redpill-linpro.com Gpg: 0xE8C2DA9E
Download .Continuous.pm.swp
application/octet-stream 16k

Message body not shown because it is not plain text.

On Wed Mar 23 16:00:54 2011, runeni@redpill-linpro.com wrote: Show quoted text
> exclude => [qr/\.(git|svn)/, qr(~$), qr(\.#.*$), qr/\..*\.swp$/]
Thank you for the patch. I've added it to the repo and shall be releasing it soon :)