diff options
-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; |