Changeset 8491 for lang/perl/App-Starter

Show
Ignore:
Timestamp:
03/29/08 11:16:01 (8 months ago)
Author:
tomyhero
Message:

lang/perl/App-Starter : ~/.app to ~/.app-starter

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/App-Starter/trunk/lib/App/Starter.pm

    r8490 r8491  
    3232 
    3333    if ( $config->{template} ) { 
    34         $config->{from}     = File::Spec->catfile( $ENV{HOME} , '/.app/skel', $config->{template} ) ; 
    35         $self->{config} =  File::Spec->catfile( $ENV{HOME} , '/.app/conf' , $config->{template} . '.yml' ); 
     34        $config->{from}     = File::Spec->catfile( $ENV{HOME} , '/.app-starter/skel', $config->{template} ) ; 
     35        $self->{config} =  File::Spec->catfile( $ENV{HOME} , '/.app-starter/conf' , $config->{template} . '.yml' ); 
    3636    }; 
    3737 
     
    128128  
    129129 # or 
    130  # This setting map to ~/.app/skell/pand/* as from and ~/.app/conf/panda.yml  as config 
     130 # This setting map to ~/.app-starter/skell/pand/* as from and ~/.app-starter/conf/panda.yml  as config 
    131131 my $app = App::Starter->new( { template => 'panda' , name =>'foo'  } )->create; 
    132132