Skip to content

Instantly share code, notes, and snippets.

@backroot
Last active August 27, 2015 09:50
Show Gist options
  • Save backroot/47ca5f15fd99444d72e2 to your computer and use it in GitHub Desktop.
Save backroot/47ca5f15fd99444d72e2 to your computer and use it in GitHub Desktop.
モジュールのバージョン番号を取得
sub getModuleVersion {
my $name = shift;
eval qq|use $name;1;|;
return $@ ? undef : eval qq|\$${name}::VERSION|;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment