From: Rafael Kitover Date: Thu, 6 Sep 2012 16:04:13 +0000 (-0400) Subject: change =encoding utf8 to =encoding UTF-8 in Loader X-Git-Tag: 0.07032~4 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FDBIx-Class-Schema-Loader.git;a=commitdiff_plain;h=5079917060b661b6e344c03c3151e4e210a8859e change =encoding utf8 to =encoding UTF-8 in Loader I didn't know why 02pod.t was erroneously passing for me, ilmari pointed out that my Pod::Simple was out of date, and I needed at least 3.21. Upgrading Pod::Simple caused 02pod.t to produce the fail when the =encoding directive was missing. I like using the UTF-8 encoding rather than the more lax utf8 encoding, so change it now that I can properly test it out. --- diff --git a/lib/DBIx/Class/Schema/Loader.pm b/lib/DBIx/Class/Schema/Loader.pm index 14b8fb1..61e5d10 100644 --- a/lib/DBIx/Class/Schema/Loader.pm +++ b/lib/DBIx/Class/Schema/Loader.pm @@ -29,7 +29,7 @@ __PACKAGE__->mk_group_accessors('inherited', qw/ /); __PACKAGE__->_loader_args({}); -=encoding utf8 +=encoding UTF-8 =head1 NAME