From 5a7d62023d94aa6b7fefb72ae614f1976e0d58a2 Mon Sep 17 00:00:00 2001 From: Sergey Romanov Date: Thu, 13 Nov 2014 17:29:38 +0300 Subject: [PATCH 1/2] Fix typo in SYNOPSIS --- README | 2 +- lib/Config/Identity.pm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README b/README index 96c22f3..f27236b 100644 --- a/README +++ b/README @@ -25,7 +25,7 @@ SYNOPSIS # 2. Decrypt the found file (if necessary) read, and parse it # 3. Throw an exception unless %identity has 'login' and 'token' defined - my %identity = Config::Identity::PAUSE->load; + my %identity = Config::Identity::GitHub->load; print "login: $identity{login} token: $identity{token}\n"; DESCRIPTION diff --git a/lib/Config/Identity.pm b/lib/Config/Identity.pm index a25f1a5..ff427d5 100644 --- a/lib/Config/Identity.pm +++ b/lib/Config/Identity.pm @@ -22,7 +22,7 @@ GitHub API: # 2. Decrypt the found file (if necessary) read, and parse it # 3. Throw an exception unless %identity has 'login' and 'token' defined - my %identity = Config::Identity::PAUSE->load; + my %identity = Config::Identity::GitHub->load; print "login: $identity{login} token: $identity{token}\n"; =head1 DESCRIPTION From 75acf717abb3e0870a49e24084ec6ed9400b55a5 Mon Sep 17 00:00:00 2001 From: Sergey Romanov Date: Thu, 13 Nov 2014 17:31:18 +0300 Subject: [PATCH 2/2] Add DZ plugin --- dist.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/dist.ini b/dist.ini index 44f83cb..b4ed552 100644 --- a/dist.ini +++ b/dist.ini @@ -14,6 +14,7 @@ include_dotfiles = 1 [ExecDir] +[GithubMeta] [Prereqs / TestRequires] Test::Most = 0