|  |  
 |   |   
 NAMEModule::Extract::VERSION - Extract a module version safely SYNOPSIS        use Module::Extract::VERSION;
        my $version   # just the version
                = Module::Extract::VERSION->parse_version_safely( $file );
        my @version_info # extra info
                = Module::Extract::VERSION->parse_version_safely( $file );
DESCRIPTIONThis module lets you pull out of module source code the version number for the module. It assumes that there is only one $VERSION in the file and the entire $VERSION statement is on the same line. Class methods
 SOURCE AVAILABILITYThis code is in Github: https://github.com/briandfoy/module-extract-version.git AUTHORbrian d foy, "<briandfoy@pobox.com>" I stole the some of this code from "mldistwatch" in the PAUSE code by Andreas König, but I've moved most of it around. Andrey Starodubtsev added code to handle the v5.12 and v5.14 "package" syntax. COPYRIGHT AND LICENSECopyright © 2008-2025, brian d foy "<briandfoy@pobox.com>". All rights reserved. You may redistribute this under the Artistic License 2.0. 
 
 |