Activator

 view release on metacpan or  search on metacpan

lib/Activator.pm  view on Meta::CPAN

package Activator;

our $version = '.90';

1;

__END__

=head1 NAME

Activator Development Framework - Object Oriented framework to ease
creation and rapid development of multi-developer distributed mixed
environment perl based software projects, especially Catalyst based
websites.

=head1 DESCRIPTION

=head2 Overview

Activator provides modules to support rapid software development throughout the software life-cycle:

=over

=item *

Role-based project configuration supporting development, QA, and production needs

=item *

A globally accessible variable registry for all components within a project including the Catalyst web app, crons and daemons

=item *

Key/Value dictionary lookups provide context sensitive messages to users and/or logs

=item *

Template based email using a role-based delivery mechanism

=item *

Role based logging utilizing Log4Perl

=item *

Global database access definitions allowing generic abstraction of database queries (supports intentionally avoiding an ORM)

=item *

Role and configuration file aware command line options processing

=back


=head2 Motivation

We are users of Catalyst. We love it, but sometimes making all the
parts of our projects play nice together within our eco-system is
difficult. As software would travel from inception to development, to
QA, to production, there were always design issues that would crop up
making someones' life difficult. Activator eases the pain. If you
don't use Activator, you have to go through great pains to avoid these
problems:

=over

=item *

Make sure that all developers don't forget to use the correct database connections

=item *

Insure that the systems team has email configured correctly on all development machines.

=item *

Make sure your code loads config files from the same place, no matter
if you are in production, QA or dev environment. Make sure this place
is maintainable, so that emergency issues can easily be resoloved.

=item *

Code review to insure a strong separation between the 3 parts of an MVC codebase.

=item *

Come up with yet another standard so that crons, command line tools, and web site code all play nice together.

=item *

Come up with yet another mechanism for providing I18N that works across all aspects of a project.

=item *

Make sure you edit all the configurations necessary when creating a new dev environment

=back

Activator solves all of the above, and many more problems. Read the L<Activator::Tutorial> to find out how.

=head1 DEPENDANCIES


     Data::Dumper
     Scalar::Util
     IO::Capture
     Exception::Class
     Test::Exception
     Test::Pod
     Class::StrongSingleton



( run in 0.536 second using v1.01-cache-2.11-cpan-39bf76dae61 )