| 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 | |