Badge-Depot
view release on metacpan or search on metacpan
t/corpus/lib/Badge/Depot/Plugin/Afakebadgewithoutimage.pm view on Meta::CPAN
use strict;
use warnings;
package Badge::Depot::Plugin::Afakebadgewithoutimage;
use Moose;
use namespace::autoclean;
use MooseX::AttributeShortcuts;
use Types::Standard qw/Str Bool/;
with 'Badge::Depot';
has username => (
is => 'ro',
isa => Str,
);
sub BUILD {
my $self = shift;
$self->link_url(sprintf q{https://travis-ci.org/%s}, $self->username);
}
1;
( run in 0.811 second using v1.01-cache-2.11-cpan-800906f7e73 )