NAME

Module::Extract::VERSION - Extract a module version without running code

SYNOPSIS

use Module::Extract::VERSION;

DESCRIPTION

This 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.

Class methods

$class->parse_version_safely( FILE );

Given a module file, return the module version. This works just like mldistwatch in PAUSE. It looks for the single line that has the $VERSION statement, extracts it, evals it, and returns the result.

SOURCE AVAILABILITY

This code is in Github:

git://github.com/briandfoy/module-extract-version.git

AUTHOR

brian d foy, <bdfoy@cpan.org>

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.

COPYRIGHT AND LICENSE

Copyright (c) 2008, brian d foy, All Rights Reserved.

You may redistribute this under the same terms as Perl itself.