NAME
Gungho::Component - Base Class For Various Gungho Components
SYNOPSIS
package Gungho::Something;
use base qw(Gungho::Component);
MMETHODS
new(\%config)
Creates a new component instance. Takes a config hashref.
setup()
Sets up the components. Use it like this in your component:
sub setup
{
my $self = shift;
# do custom setup
$self->next::method(@_);
}