]> Dogcows Code - chaz/chatty/blobdiff - lib/Chatty.pm
basic (non-AJAX) chat implemented
[chaz/chatty] / lib / Chatty.pm
index 72353a7ff8c1ce3e0397d13640a6dd4258472993..5b91943aace5c4fd8a2a6c3d0d4e234fa086c0d1 100644 (file)
@@ -17,7 +17,6 @@ use Catalyst::Runtime 5.80;
 #                 directory
 
 use Catalyst qw/
-    -Debug
     ConfigLoader
     StackTrace
     Static::Simple
@@ -25,6 +24,7 @@ use Catalyst qw/
     Session
     Session::Store::FastMmap
     Session::State::Cookie
+    Unicode::Encoding
 /;
 
 extends 'Catalyst';
@@ -41,12 +41,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.020178 seconds and 4 git commands to generate.