Create branch register_actions.
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Runtime.pm
CommitLineData
a8dc76a1 1package Catalyst::Runtime;
2
3use strict;
341d40d1 4use warnings;
a8dc76a1 5
341d40d1 6BEGIN { require 5.008001; }
7
6415bb4d 8# Remember to update this in Catalyst as well!
9
ae29b412 10our $VERSION='5.8000_06';
a8dc76a1 11
33e27a8d 12$VERSION= eval $VERSION;
13
a8dc76a1 14=head1 NAME
15
4b2bac7c 16Catalyst::Runtime - The Catalyst Framework Runtime
a8dc76a1 17
18=head1 SYNOPSIS
19
20See L<Catalyst>.
21
22=head1 DESCRIPTION
23
d4d8fbb8 24This is the primary class for the Catalyst-Runtime distribution, version 5.70.
a8dc76a1 25
0bf7ab71 26=head1 AUTHORS
a8dc76a1 27
0bf7ab71 28Catalyst Contributors, see Catalyst.pm
a8dc76a1 29
30=head1 COPYRIGHT
31
32This program is free software, you can redistribute it and/or modify it under
33the same terms as Perl itself.
34
35=cut
36
371;