]> Dogcows Code - chaz/chatty/commitdiff
add unicode support
authorCharles McGarvey <chazmcgarvey@brokenzipper.com>
Fri, 14 Oct 2011 18:08:43 +0000 (12:08 -0600)
committerCharles McGarvey <chazmcgarvey@brokenzipper.com>
Fri, 14 Oct 2011 18:08:43 +0000 (12:08 -0600)
Makefile.PL
lib/Chatty.pm

index 18cbdfb39dbf515b80f827e95dc84f71aa94b814..c5c28ca73444a3c8029e0763201cf6aadda25bbd 100644 (file)
@@ -17,6 +17,7 @@ requires 'Catalyst::Plugin::Authentication';
 requires 'Catalyst::Plugin::Session';
 requires 'Catalyst::Plugin::Session::Store::FastMmap';
 requires 'Catalyst::Plugin::Session::State::Cookie';
+requires 'Catalyst::Plugin::Unicode::Encoding';
 requires 'Catalyst::Action::RenderView';
 requires 'Moose';
 requires 'namespace::autoclean';
index 72353a7ff8c1ce3e0397d13640a6dd4258472993..86585269fcadc5748d6a843c745a8a6b2129ea0e 100644 (file)
@@ -25,6 +25,7 @@ use Catalyst qw/
     Session
     Session::Store::FastMmap
     Session::State::Cookie
+    Unicode::Encoding
 /;
 
 extends 'Catalyst';
@@ -41,12 +42,9 @@ our $VERSION = '0.01';
 # local deployment.
 
 __PACKAGE__->config(
-    name => 'Chatty',
-    # Disable deprecated behavior needed by old applications
-    disable_component_resolution_regex_fallback => 1,
-);
-
-__PACKAGE__->config(
+       name => 'Chatty',
+       # Disable deprecated behavior needed by old applications
+       disable_component_resolution_regex_fallback => 1,
        'Plugin::Authentication' => {
                default => {
                        class           => 'SimpleDB',
This page took 0.02405 seconds and 4 git commands to generate.