Rename Troubleshooting.pm to Troubleshooting.pod.
[catagits/Reaction.git] / lib / Reaction / Manual / Troubleshooting.pod
1 =head1 NAME
2
3 Reaction::Manual::Troubleshooting - Got a Reaction problem? Shoot it.
4
5 =head2 Invalid CODE attributes: ...
6
7 You need to inherit from L<Reaction::UI::Controller> for the Catalyst action
8 attributes to be available.
9
10 =head3 But I did inherit from Reaction::UI::Controller using Moose
11
12 You have to run the extends at compile time for perl attributes to work:
13
14     BEGIN {
15         extends 'Reaction::UI::Controller';
16     }
17
18 Welcome to hating attributes.
19
20 =cut