diff options
author | Gianni Ceccarelli <gianni.ceccarelli@net-a-porter.com> | 2011-11-24 17:59:04 +0000 |
---|---|---|
committer | Gianni Ceccarelli <gianni.ceccarelli@net-a-porter.com> | 2011-11-24 17:59:55 +0000 |
commit | 6e5e90bf9e77324bb8a3455950a81c2abe626400 (patch) | |
tree | f247be78476d1af905baad0a1c9339eedbde13d9 | |
parent | changelog bump (diff) | |
download | data-multivalued-50fb1e20f33f3163108140ac027edb5c99e844e8.tar.gz data-multivalued-50fb1e20f33f3163108140ac027edb5c99e844e8.tar.bz2 data-multivalued-50fb1e20f33f3163108140ac027edb5c99e844e8.zip |
make PAUSE life easierv0.0.1_1
-rw-r--r-- | Changes | 2 | ||||
-rw-r--r-- | dist.ini | 2 | ||||
-rw-r--r-- | lib/Data/MultiValued.pm (renamed from lib/Data/MultiValued.pod) | 8 |
3 files changed, 8 insertions, 4 deletions
@@ -1,6 +1,4 @@ Revision history for Data::MultiValued {{$NEXT}} - -0.0.1 2011-11-22 15:35:03 Europe/London - first working version @@ -6,7 +6,7 @@ copyright_year = 2011 abstract = Handle values with tags and validity ranges -main_module = lib/Data/MultiValued.pod +main_module = lib/Data/MultiValued.pm [GatherDir] diff --git a/lib/Data/MultiValued.pod b/lib/Data/MultiValued.pm index ebae360..aff7a17 100644 --- a/lib/Data/MultiValued.pod +++ b/lib/Data/MultiValued.pm @@ -1,6 +1,12 @@ -# PODNAME: Data::MultiValued +package Data::MultiValued; +use strict; +use warnings; # ABSTRACT: store tag- and range-dependant data in a scalar or Moose attribute +warn "Don't use this module directly, use Data::MultiValued::Tags or Data::MultiValued::Ranges or the like"; + +1; + =head1 SYNOPSIS use Data::MultiValued::Tags; |