Exception-Reporter-Summarizer-Catalyst
view release on metacpan - search on metacpan
view release on metacpan or search on metacpan
lib/Exception/Reporter/Summarizer/Catalyst.pm view on Meta::CPAN
#pod being explicit if you're concerned about this behavior.
#pod
#pod =cut
use Try::Tiny;
sub new {
my ($class, $arg) = @_;
$arg ||= {};
return bless { resolve_hostname => !! $arg->{resolve_hostname} } => $class;
}
sub resolve_hostname { $_[0]->{resolve_hostname} }
sub can_summarize {
my ($self, $entry) = @_;
return try { $entry->[1]->isa('Catalyst') };
}
sub summarize {
view all matches for this distributionview release on metacpan - search on metacpan
( run in 0.524 second using v1.00-cache-2.02-grep-82fe00e-cpan-a086c87fca4 )