The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
.travis.yml 09
Changes 03
MANIFEST 01
META.yml 66
Makefile.PL 22
inc/Module/Install/Base.pm 11
inc/Module/Install/Can.pm 11
inc/Module/Install/Fetch.pm 11
inc/Module/Install/Makefile.pm 11
inc/Module/Install/Metadata.pm 11
inc/Module/Install/Scripts.pm 11
inc/Module/Install/Win32.pm 11
inc/Module/Install/WriteAll.pm 11
inc/Module/Install.pm 11
lib/Parse/ErrorString/Perl/ErrorItem.pm 11
lib/Parse/ErrorString/Perl/StackItem.pm 11
lib/Parse/ErrorString/Perl.pm 11
17 files changed (This is a version diff) 2033
@@ -0,0 +1,9 @@
+language: perl
+perl:
+  - '5.20'
+  - '5.18'
+  - '5.16'
+  - '5.14'
+  - '5.12'
+  - '5.10'
+
@@ -1,5 +1,8 @@
 Revision history for Parse-ErrorString-Perl
 
+0.21    2014.09.10
+        * Moved to GitHub
+
 0.20    2013.10.05
         * Add back copyright and license information
           and POD headers (RT #89233 by Florian) 
@@ -1,3 +1,4 @@
+.travis.yml
 bin/check_perldiag
 Changes
 inc/Module/Install.pm
@@ -7,12 +7,12 @@ author:
 build_requires:
   ExtUtils::MakeMaker: 6.59
   Test::Differences: 0
-  Test::More: 0.47
+  Test::More: '0.47'
 configure_requires:
   ExtUtils::MakeMaker: 6.59
 distribution_type: module
 dynamic_config: 1
-generated_by: 'Module::Install version 1.06'
+generated_by: 'Module::Install version 1.08'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -28,11 +28,11 @@ requires:
   File::Basename: 0
   File::Spec: 0
   Pod::Find: 0
-  Pod::POM: 0.27
+  Pod::POM: '0.27'
   perl: 5.8.7
 resources:
-  bugtracker: http://padre.perlide.org/trac/
+  bugtracker: https://github.com/PadreIDE/Parse-ErrorString-Perl
   homepage: http://padre.perlide.org/
   license: http://dev.perl.org/licenses/
-  repository: http://svn.perlide.org/padre/trunk/Parse-ErrorString-Perl
-version: 0.20
+  repository: https://github.com/PadreIDE/Parse-ErrorString-Perl
+version: '0.21'
@@ -22,7 +22,7 @@ test_requires  'Test::More'        => '0.47';
 no_index       'directory'         => qw{ t xt eg share inc};
 install_script 'bin/check_perldiag';
 homepage       'http://padre.perlide.org/';
-bugtracker     'http://padre.perlide.org/trac/';
-repository     'http://svn.perlide.org/padre/trunk/Parse-ErrorString-Perl';
+bugtracker     'https://github.com/PadreIDE/Parse-ErrorString-Perl';
+repository     'https://github.com/PadreIDE/Parse-ErrorString-Perl';
 
 WriteAll;
@@ -4,7 +4,7 @@ package Module::Install::Base;
 use strict 'vars';
 use vars qw{$VERSION};
 BEGIN {
-	$VERSION = '1.06';
+	$VERSION = '1.08';
 }
 
 # Suspend handler for "redefined" warnings
@@ -8,7 +8,7 @@ use Module::Install::Base ();
 
 use vars qw{$VERSION @ISA $ISCORE};
 BEGIN {
-	$VERSION = '1.06';
+	$VERSION = '1.08';
 	@ISA     = 'Module::Install::Base';
 	$ISCORE  = 1;
 }
@@ -6,7 +6,7 @@ use Module::Install::Base ();
 
 use vars qw{$VERSION @ISA $ISCORE};
 BEGIN {
-	$VERSION = '1.06';
+	$VERSION = '1.08';
 	@ISA     = 'Module::Install::Base';
 	$ISCORE  = 1;
 }
@@ -8,7 +8,7 @@ use Fcntl qw/:flock :seek/;
 
 use vars qw{$VERSION @ISA $ISCORE};
 BEGIN {
-	$VERSION = '1.06';
+	$VERSION = '1.08';
 	@ISA     = 'Module::Install::Base';
 	$ISCORE  = 1;
 }
@@ -6,7 +6,7 @@ use Module::Install::Base ();
 
 use vars qw{$VERSION @ISA $ISCORE};
 BEGIN {
-	$VERSION = '1.06';
+	$VERSION = '1.08';
 	@ISA     = 'Module::Install::Base';
 	$ISCORE  = 1;
 }
@@ -6,7 +6,7 @@ use Module::Install::Base ();
 
 use vars qw{$VERSION @ISA $ISCORE};
 BEGIN {
-	$VERSION = '1.06';
+	$VERSION = '1.08';
 	@ISA     = 'Module::Install::Base';
 	$ISCORE  = 1;
 }
@@ -6,7 +6,7 @@ use Module::Install::Base ();
 
 use vars qw{$VERSION @ISA $ISCORE};
 BEGIN {
-	$VERSION = '1.06';
+	$VERSION = '1.08';
 	@ISA     = 'Module::Install::Base';
 	$ISCORE  = 1;
 }
@@ -6,7 +6,7 @@ use Module::Install::Base ();
 
 use vars qw{$VERSION @ISA $ISCORE};
 BEGIN {
-	$VERSION = '1.06';
+	$VERSION = '1.08';
 	@ISA     = qw{Module::Install::Base};
 	$ISCORE  = 1;
 }
@@ -31,7 +31,7 @@ BEGIN {
 	# This is not enforced yet, but will be some time in the next few
 	# releases once we can make sure it won't clash with custom
 	# Module::Install extensions.
-	$VERSION = '1.06';
+	$VERSION = '1.08';
 
 	# Storage for the pseudo-singleton
 	$MAIN    = undef;
@@ -4,7 +4,7 @@ package Parse::ErrorString::Perl::ErrorItem;
 use strict;
 use warnings;
 
-our $VERSION = '0.20';
+our $VERSION = '0.21';
 
 use Class::XSAccessor getters => {
 	type             => 'type',
@@ -4,7 +4,7 @@ package Parse::ErrorString::Perl::StackItem;
 use strict;
 use warnings;
 
-our $VERSION = '0.20';
+our $VERSION = '0.21';
 
 sub new {
 	my ( $class, $self ) = @_;
@@ -4,7 +4,7 @@ use v5.8.7;
 use strict;
 use warnings;
 
-our $VERSION = '0.20';
+our $VERSION = '0.21';
 
 use Carp qw(carp cluck);
 use Pod::Find ();