Re: Variable character class

2019-09-04 Thread William Michels via perl6-users
Hi Gianni, I'm not sure of the Perl5 case, but what you're saying is, if your target string is backslashed, be sure to "quote-interpolate it" in Perl6? (see below): say matching_chars( '+/][', 'Apple ][+//e' ); # says (「][+//」) say matching_chars( '+\/\]\[', 'Apple ][+//e' ); # says (「][+//」) say

Re: zef uninstall .

2019-09-04 Thread William Michels via perl6-users
On Wed, Sep 4, 2019 at 7:22 AM Fernando Santagata wrote: > > On Wed, Sep 4, 2019 at 4:07 PM Tom Browder wrote: >> >> On Wed, Sep 4, 2019 at 05:53 Fernando Santagata >> wrote: >>> >>> >>> On Wed, Sep 4, 2019 at 12:21 PM William Michels >>> wrote: Hi Fernando, I'm not sure I understan

Re: zef uninstall .

2019-09-04 Thread Fernando Santagata
On Wed, Sep 4, 2019 at 4:07 PM Tom Browder wrote: > On Wed, Sep 4, 2019 at 05:53 Fernando Santagata > wrote: > >> >> On Wed, Sep 4, 2019 at 12:21 PM William Michels >> wrote: >> >>> Hi Fernando, I'm not sure I understand. Is this for module >>> development? And you want to purge old versions of

Re: zef uninstall .

2019-09-04 Thread Tom Browder
On Wed, Sep 4, 2019 at 05:53 Fernando Santagata wrote: > > On Wed, Sep 4, 2019 at 12:21 PM William Michels > wrote: > >> Hi Fernando, I'm not sure I understand. Is this for module >> development? And you want to purge old versions of a module you're >> developing, before doing a 'git push'? > >

Re: zef uninstall .

2019-09-04 Thread Fernando Santagata
On Wed, Sep 4, 2019 at 12:21 PM William Michels wrote: > Hi Fernando, I'm not sure I understand. Is this for module > development? And you want to purge old versions of a module you're > developing, before doing a 'git push'? > Yes, it's for module development. What I do is to actually install,

Re: zef uninstall .

2019-09-04 Thread William Michels via perl6-users
Hi Fernando, I'm not sure I understand. Is this for module development? And you want to purge old versions of a module you're developing, before doing a 'git push'? I'm not sure about an anonymous uninstall in the pwd ("."), but there might be a way to set up a separate 'DevDir', and then use the

zef uninstall .

2019-09-04 Thread Fernando Santagata
Hello, apparently there's no analogous of "zef install ." to uninstall a module, i.e. an "anonymous" way to do it. The problem that I'm trying to solve is to automatically uninstall and reinstall a module before a "git push". In order to do this I'm using the git pre-push hook. So far my pre-push