Todd Rinaldo
Todd Rinaldo
```diff --- lib/Template/Plugins.pm.orig 2012-01-21 08:19:04.000000000 +0000 +++ lib/Template/Plugins.pm @@ -189,7 +189,7 @@ sub _load { $file =~ s|::|/|g; $self->debug("loading $module.pm (PLUGIN_NAME)") if $self->{ DEBUG }; - $ok = eval {...
@rehsack I opened #196 PR for this. Is there a reason we wouldn't check %INC and only load if it's not there? the `@ISA` thing makes me nervous even though...
Ok good point. We're still going to want tests before merging this. Thanks!
Sorry, I wasn’t saying you needed to do it. I was saying it needed to be done before we merge
At this point making strict default would be a major behavior change. I don't think that's appropriate. Possibly we could make it default if you do: ```perl use Template qw(strict)...
Related issue is https://github.com/Perl-Toolchain-Gang/File-Temp/issues/15
Content from #121 closed as duplicate: Migrated from [rt.cpan.org#86765](https://rt.cpan.org/Ticket/Display.html?id=86765) (status was 'new') Requestors: * [email protected] From [email protected] on 2013-07-07 23:58:44: ``` Even with POST_CHOMP and PRE_CHOMP set to 1, my...
So there is no way to do a clone with Git::Wrapper?
I was thinking about: ```perl my $g = Git::Wrapper->clone( { url => $url, dir => $repo_path, git_binary => $git_binary } ) ```