Changelog
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Runtime.pm
CommitLineData
a8dc76a1 1package Catalyst::Runtime;
2
3use strict;
341d40d1 4use warnings;
a8dc76a1 5
24964c89 6BEGIN { require 5.008006; }
341d40d1 7
6415bb4d 8# Remember to update this in Catalyst as well!
9
a61a96b3 10our $VERSION='5.80011';
2f381252 11
c3f6d73a 12$VERSION = eval $VERSION;
a8dc76a1 13
14=head1 NAME
15
2f381252 16Catalyst::Runtime - The Catalyst Framework Runtime
a8dc76a1 17
18=head1 SYNOPSIS
19
20See L<Catalyst>.
21
22=head1 DESCRIPTION
23
3932d881 24This is the primary class for the Catalyst-Runtime distribution, version 5.80.
a8dc76a1 25
2f381252 26=head1 AUTHORS
a8dc76a1 27
2f381252 28Catalyst Contributors, see Catalyst.pm
a8dc76a1 29
30=head1 COPYRIGHT
31
536bee89 32This library is free software. You can redistribute it and/or modify it under
a8dc76a1 33the same terms as Perl itself.
34
35=cut
36
371;