The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl

package ACLTestApp::C::LionCage;
use base qw/Catalyst::Controller/;

use strict;
use warnings;

sub default : Private {
	my ( $self, $c ) = @_;
	$c->res->body( "no-one is allowed in here" );
}

__PACKAGE__;

__END__

=pod

=head1 NAME

ACLTestApp::C::LionCage - 

=head1 SYNOPSIS

	use ACLTestApp::C::LionCage;

=head1 DESCRIPTION

=cut