commit 1934cc3b68ab063c24bedc5f17e77edd8382f0a7 Author: Dominik Meyer Date: Sun Jul 1 00:22:09 2018 +0200 initial commit diff --git a/dist.ini b/dist.ini new file mode 100644 index 0000000..afc1757 --- /dev/null +++ b/dist.ini @@ -0,0 +1,17 @@ +name = Git-Issue-Manager +author = Dominik Meyer +license = Perl_5 +copyright_holder = Dominik Meyer +copyright_year = 2018 + +[@Basic] +[@Git] +[Git::NextVersion] + first_version = 0.001 ; this is the default + version_by_branch = 0 ; this is the default + version_regexp = ^v(.+)$ ; this is the default +[PodWeaver] +[ChangelogFromGit] +[Bugtracker] + web = http://github.com/byterazor/%s/issues + mailto = bug-%U@federationhq.de diff --git a/lib/Git/Issue/Manager.pm b/lib/Git/Issue/Manager.pm new file mode 100644 index 0000000..0fa7990 --- /dev/null +++ b/lib/Git/Issue/Manager.pm @@ -0,0 +1,6 @@ +package Git::Issue::Manager; +use strict; +use warnings; + + + 1;