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

NAME

RapidApp::Include

SYNOPSIS

  # pulls in basic RapidApp parts
  use RapidApp::Include;
  
  # pulls in basic RapidApp parts, plus useful perl utils,
  #  extjs generators, and sugar methods
  use RapidApp::Include qw(perlutil extjs sugar);

DESCRIPTION

This module includes all the commonly-needed rapidapp classes. It can pull in additional sets of packages based on named sets, like "extjs" or "sugar". The packages are imported directly into the caller's namespace, as if they had been "use"d directly.

There is also a "perlutil" group for extremely common perl modules that we always use.

EXTENSION

To extend this module, simply create a function for each group you wish to be available, and in the group, make calls to 'calleruse' to cause the use to happen within the calling package.

SEE ALSO

Exporter

Exporter::Cluster (which was extremely useful as an example, but too simple to bother installing as a system package)