prep for release
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Runtime.pm
CommitLineData
4028c19d 1package Catalyst::Runtime;
a8dc76a1 2
3use strict;
341d40d1 4use warnings;
a8dc76a1 5
0f6be50c 6BEGIN { require 5.008003; }
341d40d1 7
6415bb4d 8# Remember to update this in Catalyst as well!
9
630ad67c 10our $VERSION = '5.90089_004';
5c779e98 11$VERSION = eval $VERSION if $VERSION =~ /_/; # numify for warning-free dev releases
2f381252 12
a8dc76a1 13=head1 NAME
14
2f381252 15Catalyst::Runtime - The Catalyst Framework Runtime
a8dc76a1 16
17=head1 SYNOPSIS
18
19See L<Catalyst>.
20
21=head1 DESCRIPTION
22
3932d881 23This is the primary class for the Catalyst-Runtime distribution, version 5.80.
a8dc76a1 24
fc6b418d 25=head1 AUTHORS & COPYRIGHT
a8dc76a1 26
2f381252 27Catalyst Contributors, see Catalyst.pm
a8dc76a1 28
fc6b418d 29=head1 LICENSE
a8dc76a1 30
536bee89 31This library is free software. You can redistribute it and/or modify it under
a8dc76a1 32the same terms as Perl itself.
33
34=cut
35
361;