Subject: | Handle colons in package names |
Allow packages with colons in the names to match and have .t appended.
Then replace double colons with single hyphens in _write_file().
Thanks,
-Gene
Software Engineer-at-large
Subject: | Test-StubGenerator-diff-02.txt |
306c306
< (\w+) # one or more word characters
---
> ([\w:]+) # one or more word or colon characters
312a313
> $filename =~ s/::/-/g; # Substitute double colons for single hyphens