Make this required, and no default
Tomas Doran [Thu, 28 Jul 2011 20:22:17 +0000 (21:22 +0100)]
lib/Catalyst/IOC/Container.pm

index fc41098..742a5eb 100644 (file)
@@ -39,9 +39,9 @@ has substitutions => (
 );
 
 has application_name => (
-    is      => 'ro',
-    isa     => 'Str',
-    default => 'MyApp',
+    is       => 'ro',
+    isa      => 'Str',
+    required => 1,
 );
 
 has sub_container_class => (