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