Apache-Session-SQLite3

 view release on metacpan or  search on metacpan

inc/Module/Install.pm  view on Meta::CPAN

30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
    if (not -f $self->{file}) {
        require "$self->{path}/$self->{dispatch}.pm";
        File::Path::mkpath("$self->{prefix}/$self->{author}");
        $self->{admin} =
          "$self->{name}::$self->{dispatch}"->new(_top => $self);
        $self->{admin}->init;
        @_ = ($class, _self => $self);
        goto &{"$self->{name}::import"};
    }
 
    *{caller(0) . "::AUTOLOAD"} = $self->autoload;
 
    # Unregister loader and worker packages so subdirs can use them again
    delete $INC{"$self->{file}"};
    delete $INC{"$self->{path}.pm"};
}
 
#line 156
 
sub autoload {
    my $self = shift;



( run in 0.334 second using v1.01-cache-2.11-cpan-87723dcf8b7 )