The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Mojo::Loader - Loader

SYNOPSIS

  use Mojo::Loader;

  # Find modules in a namespace
  my $loader = Mojo::Loader->new;
  for my $module (@{$loader->search('Some::Namespace')}) {

    # And load them safely
    my $e = $loader->load($module);
    warn qq/Loading "$module" failed: $e/ if ref $e;
  }

DESCRIPTION

Mojo::Loader is a class loader and plugin framework.

METHODS

Mojo::Loader inherits all methods from Mojo::Base and implements the following new ones.

load

  my $e = $loader->load('Foo::Bar');

Load a class and catch exceptions. Note that classes are checked for a new method to see if they are already loaded.

  if (my $e = $loader->load('Foo::Bar')) {
    die "Exception: $e" if ref $e;
  }
  my $modules = $loader->search('MyApp::Namespace');

Search for modules in a namespace non-recursively.

SEE ALSO

Mojolicious, Mojolicious::Guides, http://mojolicio.us.