Add built local::lib
[catagits/Gitalist.git] / local-lib5 / lib / perl5 / Catalyst / ScriptRunner.pm
CommitLineData
3fea05b9 1package Catalyst::ScriptRunner;
2use Moose;
3use FindBin;
4use lib;
5use File::Spec;
6use namespace::autoclean;
7
8sub run {
9 my ($self, $class, $scriptclass) = @_;
10 my $classtoload = "${class}::Script::$scriptclass";
11
12 lib->import(File::Spec->catdir($FindBin::Bin, '..', 'lib'));
13
14 unless ( eval { Class::MOP::load_class($classtoload) } ) {
15 warn("Could not load $classtoload - falling back to Catalyst::Script::$scriptclass : $@\n")
16 if $@ !~ /Can't locate/;
17 $classtoload = "Catalyst::Script::$scriptclass";
18 Class::MOP::load_class($classtoload);
19 }
20 $classtoload->new_with_options( application_name => $class )->run;
21}
22
23__PACKAGE__->meta->make_immutable;
24
25=head1 NAME
26
27Catalyst::ScriptRunner - The Catalyst Framework script runner
28
29=head1 SYNOPSIS
30
31 # Will run MyApp::Script::Server if it exists, otherwise
32 # will run Catalyst::Script::Server.
33 Catalyst::ScriptRunner->run('MyApp', 'Server');
34
35=head1 DESCRIPTION
36
37This class is responsible for running scripts, either in the application specific namespace
38(e.g. C<MyApp::Script::Server>), or the Catalyst namespace (e.g. C<Catalyst::Script::Server>)
39
40=head1 METHODS
41
42=head2 run ($application_class, $scriptclass)
43
44Called with two parameters, the application classs (e.g. MyApp)
45and the script class, (i.e. one of Server/FastCGI/CGI/Create/Test)
46
47=head1 AUTHORS
48
49Catalyst Contributors, see Catalyst.pm
50
51=head1 COPYRIGHT
52
53This library is free software. You can redistribute it and/or modify it under
54the same terms as Perl itself.
55
56=cut