Fix for people with utf-8 names. RT#84613
[catagits/Catalyst-Devel.git] / share / lib / Helper / compclass.pm.tt
CommitLineData
239b5fc0 1package [% class %];
d6b20d81 2use Moose;
3use namespace::autoclean;
239b5fc0 4
387bb037 5[% IF long_type == 'Controller' %]BEGIN { [% END %]extends 'Catalyst::[% long_type %]';[% IF long_type == 'Controller' %] }[% END %]
239b5fc0 6
7=head1 NAME
8
9[% class %] - Catalyst [% long_type %]
10
11=head1 DESCRIPTION
12
13Catalyst [% long_type %].
14[% IF long_type == 'Controller' %]
15=head1 METHODS
16
17=cut
18
19
20=head2 index
21
22=cut
23
24sub index :Path :Args(0) {
25 my ( $self, $c ) = @_;
26
27 $c->response->body('Matched [% class %] in [%name%].');
28}
29
30[% END %]
3f58db98 31
32=encoding utf8
33
239b5fc0 34=head1 AUTHOR
35
36[%author%]
37
38=head1 LICENSE
39
40This library is free software. You can redistribute it and/or modify
41it under the same terms as Perl itself.
42
43=cut
44
d6b20d81 45__PACKAGE__->meta->make_immutable;
46
641b89e2 471;