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