App-Git-Perl
view release on metacpan or search on metacpan
- fixed finding module listed on cli between recent and real repositories
- fixed tests - checking is repository cloned and where it is clone
- skip testing for Windows OS / not supported / linux only
- add comments in scripts for few tests
- fixed stderr leak when reading from nonexisting config file
0.1.12 2022-07-05 12:25
- added "provides" as required by Kwalitee
- updated ChangeLog
- rebuild distribution to fix changes from 0.1.11, related to Kwalitee
0.1.11 2022-07-05 02:41
- ignore Makefile from MANIFEST.SKIP, when preparing distribution
- bump version to 0.1.11
- fixed Kwalitee Issues for distribution
- git perl local - find module name from Makefile.PL in a different way
0.1.10 2022-07-03 13:44
- bump to version 0.1.10
- using HTTP::Tiny instead of curl
- updated minimum version of perl 5.14 because we are now using HTTP::Tiny instead of curl
0.1.9 2022-07-03 06:00
- bump to version 0.1.9
- added tests to MANIFEST/distribution
- added tests
0.1.8 2022-07-03 03:53
- updated bugtracking link in Makefile.PL
0.1.7 2022-07-03 03:38
- bump to version 0.1.7
- added CONTRIBUTING.md
- fixed bugtracker link in Makefile.PL
- Added ChangeLog to MANIFEST
- fixed error in MANIFEST.SKIP
0.1.6 2022-07-03 03:09
- Added ChangeLog, bump to version 0.1.6
- ignore create-changelog.pl script from packaging
- refactored Makefile.PL to be more readable
- added bugtracked link to metacpan
0.1.5 2022-07-03 01:58
- bump to version 0.1.5
- updated documentation to use head1 instead of head2
0.1.4 2022-07-03 01:40
- bump to version 0.1.4
- moved from README to README.md and updated documentation
0.1.3 2022-07-03 00:34
- updated version to 0.1.3
- updated AUTHOR information in README and git-perl
- updated link to git-perl from App::Git::Perl
- removed required strict and warnings from Makefile.PL
- updated Makefile.PL to reflect minimum required Perl version of 5.6.0 (using perlver command)
- in MANIFEST.SKIP, fixed .git/ and added .tar.gz
0.1.2 2022-07-02 23:06
- bumped version to 0.1.2, and added .git to MANIFEST.SKIP
0.1.1 2022-07-02 22:46
- bumped version to 0.1.1 and list changes
- fixed SYNOPSIS and Documentation part - fixed "git" to "git-perl"
script/git-perl view on Meta::CPAN
# 0.1.12 - 2022.07.05
# - rebuild distribution to fix changes from 0.1.11, related to Kwalitee
# 0.1.11 - 2022.07.05
# - fixed Kwalitee Issues for distribution
# - find module name from Makefile.PL in a different way, additionally
# 0.1.10 - 2022.07.03
# - use HTTP::Tiny instead of curl
# 0.1.9 - 2022.07.03
# - added tests
# 0.1.8 - 2022.07.03
# - updated bugtracker link in Makefile.PL
# 0.1.7 - 2022.07.03
# - added CONTRIBUTING.md
# - fixed bugtracker in Makefile.PL
# 0.1.6 - 2022.07.03
# - updated bugtracking/issues link in Makefile.PL
# - added ChangeLog
# 0.1.5 - 2022.07.02
# - updated documentation in script/git-perl and README.md to use head1 (head2 looks awful)
# 0.1.4 - 2022.07.02
# - moved README into README.md, so it can be visible on github and not rendered by metacpan
# - testing head2 instead of head1 on metacpan/github
# 0.1.3 - 2022.07.02
# - updated AUTHOR information in README and git-perl
# - updated link to git-perl from App::Git::Perl
# - removed required strict and warnings from Makefile.PL
# - updated Makefile.PL to reflect minimum required Perl version of 5.6.0 (using perlver command)
# 0.1.2 - 2022.07.02
# - bumped version to 0.1.2, since I forgot to update version in lib/App/Git/Perl.pm
# 0.1.1 - 2022.07.02
# - remove "use strict", and "use warnings"
# - updated documentation in README and script/git-perl to show 'git-perl' and not 'git' in metacpan
# 0.1.0 - 2022.07.02
# - initial commit
my $configfile = "$ENV{HOME}/.config/git-perl.conf";
my $gitdirs;
# init
$gitdirs = config("dir");
$gitdirs = "." if ( not $gitdirs );
system("mkdir -p \"$gitdirs\"") if ( not -d $gitdirs );
( run in 0.281 second using v1.01-cache-2.11-cpan-05444aca049 )