Reputation: 165
I am trying to get into Perl6 by working on a module but I can't seem to figure out what the right workflow is.
Right now I am using rakudobrew and I want to add SSL/TLS support to HTTP::Client.
Where does rakudobrew store libraries? What do I do to use the modified version?
Thank you for your time and patience helping me get started with Perl6.
Upvotes: 4
Views: 81
Reputation: 23537
In general, you don't need to care about where the libraries are stored. If you use rakudobrew or some other method, zef install .
will put the libraries where they can be reached. So as answered above, just hack away at your version of the library after cloning it, then test locally with zef test .
and install it globally with zef install .
Upvotes: 1
Reputation: 165
Christoph is right; perl6 -Ilib
or perl -I./lib
is what I was looking for.
Upvotes: 1