File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 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"
Original file line number Diff line number Diff line change 66# Purpose : Create markdown documentation for programs in a github repository
77# Help : Yes
88
9- use Getopt::Std;
9+ # use Getopt::Std;
1010use Text::More : ALL;
1111
1212my $ max-line-length = 78 ;
@@ -70,12 +70,14 @@ if !@*ARGS.elems {
7070 exit ;
7171}
7272
73+ = begin comment
7374# collect the options
7475getopts(
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
8183usage() if % opts <h >;
You can’t perform that action at this time.
0 commit comments