Skip to content

Commit c751353

Browse files
committed
get rid of bin file for now
1 parent 0782a32 commit c751353

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

META6.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
{
22
"perl" : "6.c",
33
"name" : "Text::More",
4-
"version" : "0.1.5",
4+
"version" : "0.1.6",
55
"description" : "Provides some additional text functions and a utility program to create a markdown file of subroutine descriptions",
66
"authors" : [ "github:tbrowder" ],
77
"license" : "Artistic-2.0",
8-
"source-url" : "https://github.com/tbrowder/Text-More-Perl6/archive/v0.1.5.zip",
8+
"source-url" : "https://github.com/tbrowder/Text-More-Perl6.git",
99
"support" : {
10-
"bugtracker" : "https://github.com/tbrowder/Text-More-Perl6/issues",
11-
"source" : "https://github.com/tbrowder/Text-More-Perl6/tree/v0.1.5"
10+
"bugtracker" : "https://github.com/tbrowder/Text-More-Perl6/issues"
1211
},
1312
"provides" : {
1413
"Text::More" : "lib/Text/More.pm6"

bin/create-md.p6 renamed to bin.old/create-md.p6

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Purpose : Create markdown documentation for programs in a github repository
77
# Help : Yes
88

9-
use Getopt::Std;
9+
#use Getopt::Std;
1010
use Text::More :ALL;
1111

1212
my $max-line-length = 78;
@@ -70,12 +70,14 @@ if !@*ARGS.elems {
7070
exit;
7171
}
7272

73+
=begin comment
7374
# collect the options
7475
getopts(
7576
'hDvN' ~ 'b:m:d:M:', # option string (':' following an arg means a value for the arg is required)
7677
%opts,
7778
@*ARGS
7879
);
80+
=end comment
7981

8082
# help overrides all
8183
usage() if %opts<h>;

0 commit comments

Comments
 (0)