Switched from YAML to JSON for now
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Helper.pm
index d965711..3b86793 100644 (file)
@@ -360,7 +360,7 @@ sub _mk_config {
     my $dir       = $self->{dir};
     my $appprefix = $self->{appprefix};
     $self->render_file( 'config',
-        File::Spec->catfile( $dir, "$appprefix.yml" ) );
+        File::Spec->catfile( $dir, "$appprefix.json" ) );
 }
 
 sub _mk_readme {
@@ -616,8 +616,9 @@ install_script glob('script/*.pl');
 auto_install;
 WriteAll;
 __config__
----
-name: [% name %]
+{
+    "name": "[% name %]"
+}
 __readme__
 Run script/[% appprefix %]_server.pl to test the application.
 __changes__
@@ -783,7 +784,7 @@ my $port          = 3000;
 my $keepalive     = 0;
 my $restart       = 0;
 my $restart_delay = 1;
-my $restart_regex = '\.yml$|\.yaml$|\.pm$';
+my $restart_regex = '\.yml$|\.yaml$|\.json|\.pm$';
 
 my @argv = @ARGV;
 
@@ -844,7 +845,7 @@ require [% name %];
    -rd -restartdelay  delay between file checks
    -rr -restartregex  regex match files that trigger
                       a restart when modified
-                      (defaults to '\.yml$|\.yaml$|\.pm$')
+                      (defaults to '\.yml$|\.yaml$|\.json|\.pm$')
 
  See also:
    perldoc Catalyst::Manual