From 1a3795fb044044bb5908b9cfbc097600423208c4 Mon Sep 17 00:00:00 2001 From: Mark Ellis Date: Sat, 22 Feb 2014 15:58:43 +0000 Subject: [PATCH] version 0.009001 Changed repo url --- .gitignore | 9 +++++++++ Changes | 3 +++ MANIFEST | 17 ----------------- MANIFEST.SKIP | 10 ++++++++++ Makefile.PL | 4 ++-- README.md | 3 ++- lib/Exception/Simple.pm | 10 +++++----- 7 files changed, 31 insertions(+), 25 deletions(-) delete mode 100644 MANIFEST create mode 100644 MANIFEST.SKIP diff --git a/.gitignore b/.gitignore index 1377554..3f92efd 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,10 @@ +MANIFEST *.swp +inc +*.bak +META* +MYMETA.* +Makefile +*.tar.gz +blib +pm_to_blib diff --git a/Changes b/Changes index 6da3c00..a0267c3 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Revision history for perl module Exception::Simple +0.009001 2014-02-22 + - Changed github repo url + 0.009 2013-07-29 - Reformatted Changes file as per CPAN::Changes::Spec diff --git a/MANIFEST b/MANIFEST deleted file mode 100644 index f91e90e..0000000 --- a/MANIFEST +++ /dev/null @@ -1,17 +0,0 @@ -Changes -inc/Module/AutoInstall.pm -inc/Module/Install.pm -inc/Module/Install/AutoInstall.pm -inc/Module/Install/Base.pm -inc/Module/Install/Can.pm -inc/Module/Install/Fetch.pm -inc/Module/Install/Include.pm -inc/Module/Install/Makefile.pm -inc/Module/Install/Metadata.pm -inc/Module/Install/Win32.pm -inc/Module/Install/WriteAll.pm -lib/Exception/Simple.pm -Makefile.PL -MANIFEST This list of files -META.yml -t/exception-simple.t diff --git a/MANIFEST.SKIP b/MANIFEST.SKIP new file mode 100644 index 0000000..a337ae0 --- /dev/null +++ b/MANIFEST.SKIP @@ -0,0 +1,10 @@ +.*\.swp +\.git +\.bak +\.travis\.yml +README\.md +MYMETA.* +MANIFEST\.SKIP +blib +\.tar\.gz +pm_to_blib diff --git a/Makefile.PL b/Makefile.PL index 8e7e4e6..4ecedc7 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -10,8 +10,8 @@ test_requires 'parent'; perl_version '5.008'; resources( - 'bugtracker' => 'https://github.com/n0body-/exception-simple/issues', - 'repository' => 'https://github.com/n0body-/exception-simple.git', + 'bugtracker' => 'https://github.com/markwellis/exception-simple/issues', + 'repository' => 'https://github.com/markwellis/exception-simple.git', ); auto_install; diff --git a/README.md b/README.md index dad48f5..391b919 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ -[![Build Status](https://travis-ci.org/n0body-/exception-simple.png)](https://travis-ci.org/n0body-/exception-simple) +[![Build Status](https://travis-ci.org/markwellis/exception-simple.png)](https://travis-ci.org/markwellis/exception-simple) +[![Coverage Status](https://coveralls.io/repos/markwellis/exception-simple/badge.png)](https://coveralls.io/r/markwellis/exception-simple) Exception::Simple ===== diff --git a/lib/Exception/Simple.pm b/lib/Exception/Simple.pm index eec881f..9f739fc 100644 --- a/lib/Exception/Simple.pm +++ b/lib/Exception/Simple.pm @@ -2,7 +2,7 @@ package Exception::Simple; use strict; use warnings; -our $VERSION = '0.009'; +our $VERSION = '0.009001'; $VERSION = eval $VERSION; use overload( @@ -161,13 +161,13 @@ If you don't pass in error, then you'll get an undef warning on stringify =head1 SUPPORT -Please submit bugs through L +Please submit bugs through L For other issues, contact the maintainer =head1 AUTHOR -n0body En0body@thisaintnews.comE +Mark Ellis Emarkellis@cpan.orgE =head1 CONTRIBUTORS @@ -175,11 +175,11 @@ Stephen Thirlwall =head1 SEE ALSO -L, L +L =head1 LICENSE -Copyright (C) 2013 by n0body L +Copyright 2014 Mark Ellis Emarkellis@cpan.orgE This library is free software, you can redistribute it and/or modify it under the same terms as Perl itself.