From 1934cc3b68ab063c24bedc5f17e77edd8382f0a7 Mon Sep 17 00:00:00 2001 From: Dominik Meyer Date: Sun, 1 Jul 2018 00:22:09 +0200 Subject: [PATCH] initial commit --- dist.ini | 17 +++++++++++++++++ lib/Git/Issue/Manager.pm | 6 ++++++ 2 files changed, 23 insertions(+) create mode 100644 dist.ini create mode 100644 lib/Git/Issue/Manager.pm 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;