Re: Installing dependencies, testing a module

2015-01-01 Thread Will Coleda
I use "ufo" for this sort of thing when doing development work. $ panda install ufo $ ufo ; # in top level of checked out perl6 project. This creates a makefile, which gives you a "test" target, among other things. (This test target is almost exactly what you have above, though) On Wed, Dec 31

Installing dependencies, testing a module

2014-12-31 Thread Gabor Szabo
HI, Given a Perl 6 module that properly lists its dependencies such as https://github.com/supernovus/perl6-web-template/ If I clone the repository, is there a command that would install all the dependencies of the module but not the module itself (e.g. panda installdeps ?) What would be the r