Changeset 8973
- Timestamp:
- 04/06/08 11:48:45 (5 years ago)
- Location:
- lang/perl/Catalyst-Controller-AllowDisable/trunk
- Files:
-
- 5 modified
-
Changes (modified) (1 diff)
-
MANIFEST (modified) (1 diff)
-
META.yml (modified) (1 diff)
-
Makefile.PL (modified) (1 diff)
-
lib/Catalyst/Controller/AllowDisable.pm (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lang/perl/Catalyst-Controller-AllowDisable/trunk/Changes
r1855 r8973 1 1 Revision history for CatalystX-Controller-AllowDisable 2 3 0.02 2008-04-05/11:43 4 - fix type 5 - using Module::Install 2 6 3 7 0.01 2007-11-20/22:44 -
lang/perl/Catalyst-Controller-AllowDisable/trunk/MANIFEST
r1859 r8973 1 1 Changes 2 inc/Module/AutoInstall.pm 3 inc/Module/Install.pm 4 inc/Module/Install/AutoInstall.pm 5 inc/Module/Install/Base.pm 6 inc/Module/Install/Can.pm 7 inc/Module/Install/Fetch.pm 8 inc/Module/Install/Include.pm 9 inc/Module/Install/Makefile.pm 10 inc/Module/Install/Metadata.pm 11 inc/Module/Install/Win32.pm 12 inc/Module/Install/WriteAll.pm 13 lib/Catalyst/Controller/AllowDisable.pm 14 Makefile.PL 2 15 MANIFEST 3 META.yml # Will be created by "make dist" 4 Makefile.PL 16 META.yml # Will be created by "make dist" 5 17 README 6 lib/Catalyst/Controller/AllowDisable.pm 18 t/00-load.t 7 19 t/01-app.t 8 t/00-load.t9 20 t/boilerplate.t 10 t/pod-coverage.t11 t/pod.t12 21 t/lib/TestApp.pm 13 22 t/lib/TestApp/Controller/Disable.pm 14 23 t/lib/TestApp/Controller/Root.pm 24 t/pod-coverage.t 25 t/pod.t -
lang/perl/Catalyst-Controller-AllowDisable/trunk/META.yml
r1855 r8973 1 --- 2 abstract: Use when you want to disable your controller. 3 author: 4 - Tomohiro Teranishi <tomohiro.teranishi@gmail.com> 5 distribution_type: module 6 generated_by: Module::Install version 0.68 7 license: perl 8 meta-spec: 9 url: http://module-build.sourceforge.net/META-spec-v1.3.html 10 version: 1.3 11 name: Catalyst-Controller-AllowDisable 12 no_index: 13 directory: 14 - inc 15 - t 16 requires: 17 Catalyst::Runtime: 5.7 18 Test::More: 0 19 version: 0.02 -
lang/perl/Catalyst-Controller-AllowDisable/trunk/Makefile.PL
r8953 r8973 1 1 use strict; 2 2 use warnings; 3 use ExtUtils::MakeMaker;3 use inc::Module::Install; 4 4 5 WriteMakefile( 6 NAME => 'Catalyst::Controller::AllowDisable', 7 AUTHOR => 'Tomohiro Teranishi <tomohiro.teranishi@gmail.com>', 8 VERSION_FROM => 'lib/Catalyst/Controller/AllowDisable.pm', 9 ABSTRACT_FROM => 'lib/Catalyst/Controller/AllowDisable.pm', 10 PL_FILES => {}, 11 PREREQ_PM => { 12 'Test::More' => 0, 13 'Catalyst::Runtime' => 5.70, 14 }, 15 dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, 16 clean => { FILES => 'Catalyst-Controller-AllowDisable-*' }, 17 ); 5 name 'Catalyst-Controller-AllowDisable'; 6 author 'Tomohiro Teranishi <tomohiro.teranishi@gmail.com>'; 7 all_from 'lib/Catalyst/Controller/AllowDisable.pm'; 8 requires 'Test::More' => 0; 9 requires 'Catalyst::Runtime' => 5.70; 10 license 'perl'; 11 auto_install; 12 WriteAll; 13 -
lang/perl/Catalyst-Controller-AllowDisable/trunk/lib/Catalyst/Controller/AllowDisable.pm
r8953 r8973 4 4 use strict; 5 5 6 our $VERSION = '0.0 1';6 our $VERSION = '0.02'; 7 7 8 8 use base qw/Catalyst::Controller/; … … 30 30 =head1 SYNOPSIS 31 31 32 33 32 Package App::Web::Controller::Devel; 34 33 … … 49 48 =head1 DESCRIPTION 50 49 51 I sometime create controller s for developer and which are good staff butI do not want to ship it to production but I do not want to remove it also. So I create this controller module. You can disable controller which using this module using on_controller_disable=1 at config.50 I sometime create controller only for developers which I do not want to ship it to production but I do not want to remove it also. So I create this controller module. You can disable controller which using this module using on_controller_disable=1 at config. 52 51 53 52 =head1 METHOD … … 61 60 =head1 COPYRIGHT & LICENSE 62 61 63 Copyright 200 7Tomohiro Teranishi, all rights reserved.62 Copyright 2008 Tomohiro Teranishi, all rights reserved. 64 63 65 64 This program is free software; you can redistribute it and/or modify it
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)