downgrade moose and CSV requirements master
authorMark Wells <mark@freeside.biz>
Mon, 6 Aug 2012 21:48:12 +0000 (14:48 -0700)
committerMark Wells <mark@freeside.biz>
Mon, 6 Aug 2012 21:48:12 +0000 (14:48 -0700)
KeyBank.pm
META.yml [new file with mode: 0644]
Makefile.PL

index 6c5eafd..4d8f73c 100644 (file)
@@ -35,7 +35,7 @@ None.
 =cut
 
 use DateTime;
-use Text::CSV_XS;
+use Text::CSV;
 use Digest::MD5 qw( md5_hex );
 
 use Moose;
@@ -46,7 +46,7 @@ sub format_item { '' }
 
 has '_csv' => (
   is => 'ro',
-  default => sub { Text::CSV_XS->new() },
+  default => sub { Text::CSV->new() },
 );
 
 sub parse_batch_id {
diff --git a/META.yml b/META.yml
new file mode 100644 (file)
index 0000000..c722b20
--- /dev/null
+++ b/META.yml
@@ -0,0 +1,25 @@
+--- #YAML:1.0
+name:               Business-BatchPayment-KeyBank
+version:            0.01
+abstract:           Key Bank check lockbox format
+author:
+    - Mark Wells <mark@freeside.biz>
+license:            perl
+distribution_type:  module
+configure_requires:
+    ExtUtils::MakeMaker:  0
+build_requires:
+    ExtUtils::MakeMaker:  0
+requires:
+    Business::BatchPayment:  0
+    Moose:                1.09
+    Test::More:           0
+    Text::CSV:            1.0
+no_index:
+    directory:
+        - t
+        - inc
+generated_by:       ExtUtils::MakeMaker version 6.55_02
+meta-spec:
+    url:      http://module-build.sourceforge.net/META-spec-v1.4.html
+    version:  1.4
index 8c3a103..c2ef4d8 100644 (file)
@@ -13,6 +13,9 @@ WriteMakefile(
       : ()),
     PL_FILES            => {},
     PREREQ_PM => {
+        'Text::CSV' => '1.0',
+        'Business::BatchPayment' => 0,
+        'Moose' => 1.09,
         'Test::More' => 0,
     },
     dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },