in reply to Module info viewer
As for the version extraction, I'd just go with:
- tye (but my friends call me "Tye")my $version= do { no strict 'refs'; ${$module."::VERSION"}; }; if( defined $version ) { push @out, "$module version $version\n"; } else { push @out, "$module, no version\n"; }
|
---|