Take me over?
The maintainer of this distribution is looking for someone to take over!
If you're interested then please contact them via
email.
NAME
Verby::Action::Run::Unconditional - A default verify
method for Verby::Action::Run based actions.
SYNOPSIS
pakcage MyAction;
with
qw/
Verby::Action::Run::Unconditional
/
;
sub
do
{
my
(
$self
,
$c
) =
@_
;
$c
->create_poe_session( ... );
}
# no need to supply ->verify
DESCRIPTION
This convenience role makes it easy to write Verby::Action::Run based actions that return false from verify
until they have actually been run, at which point they return true unconditionally.