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

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(@_);
  }