Re: Where is Devel::Cover installed?

2004-11-05 Thread Jim Keenan
[EMAIL PROTECTED] (Jeff Bisbee) wrote in message news:[EMAIL PROTECTED]... I have a handy script I keep in my ~/bin directory called 'pmpath' #!/usr/bin/perl $module = shift; ($mod = $module) =~ s#::#/#g; die (Need a module name\n) unless $mod; $mod .= '.pm';

Re: Where is Devel::Cover installed?

2004-10-30 Thread James E Keenan
David H. Adler wrote: Mine is in /usr/local/lib/perl5/site_perl/5.8.5/darwin-2level/Devel/Cover.pm On OS X (and other systems, I'm sure) stuff sometimes gets installed under architecture specific directories like that. As mentioned elsehwere, perldoc -l is your friend. dha Yes, as I

Re: Where is Devel::Cover installed?

2004-10-30 Thread James E Keenan
Randy W. Sims wrote: Is it correctly installed: `perl -MDevel::Cover -e1` If so, you can find it with: `perldoc -l Devel::Cover` BTW, A quick way to view the source is: `perldoc -m Devel::Cover` Cool! Somehow the -l and -m options to 'perldoc' were completely unknown by me. I can see I'll be

Re: Where is Devel::Cover installed?

2004-10-30 Thread Michael G Schwern
On Fri, Oct 29, 2004 at 09:10:30PM -0400, James E Keenan wrote: Yes, as I subsequently discovered, it's in the mysteriously named 'darwin-2level' directory. This is the architecture specific directory where any modules with a non-portable component (read: compiled C code) goes. -- Michael G

Re: Where is Devel::Cover installed?

2004-10-30 Thread Jeff Bisbee
* James E Keenan ([EMAIL PROTECTED]) wrote: and in the corresponding /blib/lib directory. Of course, I expected it to be here as a residue from its installation ... but I expected it to be in some 'lib' directory as well. Can anyone clue me in? I have a handy script I keep in my ~/bin

Where is Devel::Cover installed?

2004-10-29 Thread James E Keenan
On my Mac OS X (Darwin), when I install a Perl module from CPAN, it is installed in or under this directory: /usr/local/lib/perl5/site_perl/5.8.4/ Recently I got hankerin' to look at the source code for Devel::Cover. I would have expected to find it here:

Re: Where is Devel::Cover installed?

2004-10-29 Thread Randy W. Sims
James E Keenan wrote: On my Mac OS X (Darwin), when I install a Perl module from CPAN, it is installed in or under this directory: /usr/local/lib/perl5/site_perl/5.8.4/ Recently I got hankerin' to look at the source code for Devel::Cover. I would have expected to find it here:

Re: Where is Devel::Cover installed?

2004-10-29 Thread Andy Lester
On Thu, Oct 28, 2004 at 09:51:06PM -0400, James E Keenan ([EMAIL PROTECTED]) wrote: Recently I got hankerin' to look at the source code for Devel::Cover. I would have expected to find it here: /usr/local/lib/perl5/site_perl/5.8.4/Devel/Cover.pm perldoc -l Module::Name will give you the

Re: Where is Devel::Cover installed?

2004-10-29 Thread David H. Adler
On Thu, Oct 28, 2004 at 09:51:06PM -0400, James E Keenan wrote: On my Mac OS X (Darwin), when I install a Perl module from CPAN, it is installed in or under this directory: /usr/local/lib/perl5/site_perl/5.8.4/ Recently I got hankerin' to look at the source code for Devel::Cover. I