NAME
Gungho::Provider::Inline - Inline Provider
DESCRIPTION
Sometimes you don't need the full power of an independent Gungho Provider and or Handler. In those cases, Gungho::Provider::Inline saves you from creating a separate package for a Provider.
You can simply pass a code reference as the the provider config:
Gungho->run(
{
provider => sub { ... }
}
);
And it will be called via Gungho::Provider::Inline.
The code reference you specified will be called as if it were a method in the Gungho::Provider::Inline package.