I need to find the version of Mojo:::Util
that's installed on one of my servers, so I can submit an issue on the Mojolicious Github repository. I followed the recommendations on How can I find the version of an installed Perl module? mainly:
perl -MMojo::Util\ 9999
The response I got when I ran that was:
Mojo::Util does not define $Mojo::Util::VERSION--version check failed.
BEGIN failed--compilation aborted.
I originally installed Mojo::DOM
using CPANM and got Mojo::Util
because Mojo::DOM
depends on it.
How do I determine the version of an installed Perl module where $VERSION
is not defined?