Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Adds meta for easy installation and test
  • Loading branch information
JJ committed Feb 8, 2019
1 parent aeae577 commit dc754c0
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
23 changes: 23 additions & 0 deletions META6.json
@@ -0,0 +1,23 @@
{
"name" : "Unbitrot::Utils",
"source-url" : "git://github.com/perl6/ecosystem-unbitrot",
"perl" : "6.d",
"build-depends" : [ ],
"provides" : {
"Unbitrot::Utils" : "lib/Unbitrot/Utils.pm"
},
"tags" : [
"Ecosystem", "Unbitrot"
],
"depends" : [
"JSON::Fast",
"Cro"
],
"description" : "Utilities for ecosystem unbitrot squashathons",
"test-depends" : [ ],
"version" : "0.0.2",
"license" : "Perl",
"authors" : [
"Perl6"
]
}
3 changes: 2 additions & 1 deletion bin/update-issues.p6
Expand Up @@ -34,7 +34,7 @@ for %modules.keys.sort -> $name {
my $title = $name;
my @labels;
my $body = $template-text;
my $ping-author = False ?? Ping @AlexDaniel or @JJ. !! ;
my $ping-author = False ?? Ping the module author. !! ;
my $previous-ticket = $ticket ?? Preivous ticket: # ~ $ticket<number> !! ;

$body .= subst: 「MODULE」, $name;
Expand All @@ -44,6 +44,7 @@ for %modules.keys.sort -> $name {
$body .= subst: 「PING-AUTHOR」, $ping-author;
$body .= subst: 「PREVIOUS-TICKET」, $previous-ticket;

say $body;
# submit-issue(:$token, :$title, :$body, :@labels);

}
Expand Down
2 changes: 1 addition & 1 deletion t/0.t6
Expand Up @@ -5,5 +5,5 @@ use v6;
use Test;


use-ok "Utils", "Using lib is OK";
use-ok "Unbitrot::Utils", "Using lib is OK";

0 comments on commit dc754c0

Please sign in to comment.