From: Peter Rabbitson Date: Tue, 18 Aug 2009 20:29:26 +0000 (+0000) Subject: YAML is a test-dep (or at least it's a good thing to have) X-Git-Tag: v0.11008~98 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=dd299a76cfbdac0838839918fc278fe9f3a3be38;p=dbsrgits%2FSQL-Translator.git YAML is a test-dep (or at least it's a good thing to have) Remove last piece of Readonly --- diff --git a/Makefile.PL b/Makefile.PL index c7d12d0..e1c14f9 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -28,9 +28,9 @@ my $deps = { 'Text::ParseWords' => 0, 'Text::RecordParser' => 0.02, 'XML::LibXML' => 1.69, - 'YAML' => 0.66, }, test_requires => { + 'YAML' => 0.66, 'File::Basename' => 0, 'Test::More' => 0.6, 'Test::Differences' => 0, diff --git a/lib/SQL/Translator/Utils.pm b/lib/SQL/Translator/Utils.pm index a2862f6..27ae216 100644 --- a/lib/SQL/Translator/Utils.pm +++ b/lib/SQL/Translator/Utils.pm @@ -23,7 +23,6 @@ use base qw(Exporter); use vars qw($VERSION $DEFAULT_COMMENT @EXPORT_OK); use Digest::SHA1 qw( sha1_hex ); use Exporter; -use Readonly; $VERSION = '1.59'; $DEFAULT_COMMENT = '-- ';