Subject: | support for version.pm |
Date: | Wed, 11 Jun 2008 09:47:50 -0400 |
To: | bug-YAML-Tiny [...] rt.cpan.org |
From: | "Danny Kimsey" <dekimsey [...] gmail.com> |
When using the module version to generate $VERSION information in
modules, YAML::Tiny fails. Specifically erroring stating "YAML::Tiny
does not support version references at
/home/dekimsey/.install/perl/lib/YAML/Tiny.pm line 450."
This is caused when using version in conjunction with Module::Install
to write a YAML file with the entry "version_from 'lib/Data.pm'"
This seems like it'd be a common thing as version /appears/ to be
rather popular for handling of version numbers. I'd like to request
that YAML::Tiny implement support for it.
==
#Data.pm
14 package Data;
15 use strict;
16 use warnings;
17 use version; our $VERSION = version->new(qw$Revision: 241 $);
==
--
Danny.