Dist-Zilla-PluginBundle-ROKR
view release on metacpan or search on metacpan
lib/Dist/Zilla/Plugin/UpdateGitHub.pm view on Meta::CPAN
3233343536373839404142434445464748495051525354555657585960616263646566
return
;
}
}
my
$response
=
$agent
->post(
$uri
,
[
login
=>
$login
,
token
=>
$token
,
'values[description]'
=>
$description
] );
unless
(
$response
->is_success ) {
die
$response
->status_line,
"\n"
,
$response
->decoded_content;
}
return
$response
;
}
sub
release {
my
(
$self
) =
@_
;
my
$repository
=
$self
->zilla->name;
my
$description
=
$self
->zilla->abstract;
eval
{
if
(
my
$response
=
$self
->update(
repository
=>
$repository
,
description
=>
$description
) ) {
$self
->
log
(
"Updated github description:"
,
$response
->decoded_content );
}
};
$self
->
log
(
"Unable to update github description: $@"
)
if
$@;
}
__PACKAGE__->meta->make_immutable;
no
Moose;
1;
__END__
( run in 0.317 second using v1.01-cache-2.11-cpan-05444aca049 )