Show
Ignore:
Timestamp:
04/06/08 18:24:15 (5 years ago)
Author:
tomyhero
Message:

lang/perl/Catalyst-Controller-AllowDisable?: add spelling.t

Location:
lang/perl/Catalyst-Controller-AllowDisable/tags
Files:
1 added
4 modified
1 copied

Legend:

Unmodified
Added
Removed
  • lang/perl/Catalyst-Controller-AllowDisable/tags/0.02/META.yml

    r8974 r9008  
    1 ---  
    21abstract: Use when you want to disable your controller. 
    3 author:  
    4   - Tomohiro Teranishi <tomohiro.teranishi@gmail.com> 
     2author: Tomohiro Teranishi <tomohiro.teranishi@gmail.com> 
    53distribution_type: module 
    6 generated_by: Module::Install version 0.68 
     4generated_by: Module::Install version 0.64 
    75license: perl 
    8 meta-spec:  
    9   url: http://module-build.sourceforge.net/META-spec-v1.3.html 
    10   version: 1.3 
    116name: Catalyst-Controller-AllowDisable 
    127no_index:  
  • lang/perl/Catalyst-Controller-AllowDisable/tags/0.03/Changes

    r8973 r9008  
    11Revision history for CatalystX-Controller-AllowDisable 
     2 
     30.03    2008-04-06/18:20 
     4        - add spelling.t 
    25 
    360.02    2008-04-05/11:43 
  • lang/perl/Catalyst-Controller-AllowDisable/tags/0.03/Makefile.PL

    r8973 r9008  
    88requires 'Test::More'        => 0; 
    99requires 'Catalyst::Runtime' => 5.70; 
     10requires 'Test::Spelling'    => 0; 
    1011license 'perl'; 
    1112auto_install; 
  • lang/perl/Catalyst-Controller-AllowDisable/tags/0.03/lib/Catalyst/Controller/AllowDisable.pm

    r8973 r9008  
    44use strict; 
    55 
    6 our $VERSION = '0.02'; 
     6our $VERSION = '0.03'; 
    77 
    88use base qw/Catalyst::Controller/; 
     
    1212sub new { 
    1313    my $self = shift; 
    14     my $app = $_[0]; 
     14    my $app  = $_[0]; 
    1515    if ( !$app->config->{on_controller_disable} ) { 
    1616        my $new = $self->NEXT::new(@_); 
    17         $new->_application( $app ); 
     17        $new->_application($app); 
    1818        return $new; 
    1919    } 
    2020    return $app; 
    2121} 
    22  
    2322 
    24231;