From 8b80855f7effab08d641ff2497c6275e0ebde713 Mon Sep 17 00:00:00 2001 From: Dominik Meyer Date: Tue, 3 Jul 2018 17:39:05 +0200 Subject: [PATCH] initial commit --- dist.ini | 17 +++++++++++++++++ lib/App/Git/IssueManager.pm | 6 ++++++ 2 files changed, 23 insertions(+) create mode 100644 dist.ini create mode 100644 lib/App/Git/IssueManager.pm diff --git a/dist.ini b/dist.ini new file mode 100644 index 0000000..42f4709 --- /dev/null +++ b/dist.ini @@ -0,0 +1,17 @@ +name = App-Git-IssueManager +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/App/Git/IssueManager.pm b/lib/App/Git/IssueManager.pm new file mode 100644 index 0000000..5baa73d --- /dev/null +++ b/lib/App/Git/IssueManager.pm @@ -0,0 +1,6 @@ +package App::Git::IssueManager; +use strict; +use warnings; + + + 1;