initial commit

This commit is contained in:
Dominik Meyer 2018-07-01 00:22:09 +02:00
commit 1934cc3b68
No known key found for this signature in database
GPG Key ID: B4C312B600606B64
2 changed files with 23 additions and 0 deletions

17
dist.ini Normal file
View File

@ -0,0 +1,17 @@
name = Git-Issue-Manager
author = Dominik Meyer <dmeyer@federationhq.de>
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

6
lib/Git/Issue/Manager.pm Normal file
View File

@ -0,0 +1,6 @@
package Git::Issue::Manager;
use strict;
use warnings;
1;