Skip to content

Commit

Permalink
Ported to dist.ini.
Browse files Browse the repository at this point in the history
  • Loading branch information
chromatic committed Jun 12, 2011
1 parent 6758fef commit 40a7a54
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 105 deletions.
21 changes: 0 additions & 21 deletions Build.PL

This file was deleted.

3 changes: 3 additions & 0 deletions Changes
@@ -1,6 +1,9 @@
Changes for UNIVERSAL::isa
--------------------------

{{$NEXT}}
- converted to Dist::Zilla

1.03 Mon Jun 22 20:42:36 UTC 2009
- improved packaging (Module::Build is now a config_requires dependency)

Expand Down
9 changes: 0 additions & 9 deletions MANIFEST

This file was deleted.

24 changes: 0 additions & 24 deletions META.yml

This file was deleted.

46 changes: 0 additions & 46 deletions README

This file was deleted.

23 changes: 23 additions & 0 deletions dist.ini
@@ -0,0 +1,23 @@
name = UNIVERSAL-isa
author = chromatic
license = Perl_5
copyright_holder = chromatic@wgz.org
copyright_year = 2011

[AutoVersion]
format = {{ cldr('1.yyyyMMdd') }}

[AutoPrereqs]

[@Basic]
[PkgVersion]
[NextRelease]

[@Git]
changelog = Changes ; this is the default
allow_dirty = dist.ini ; see Git::Check...
allow_dirty = Changes ; ... and Git::Commit
commit_msg = v%v%n%n%c ; see Git::Commit
tag_format = %v ; see Git::Tag
tag_message = %v ; see Git::Tag
push_to = origin ; see Git::Push
11 changes: 6 additions & 5 deletions lib/UNIVERSAL/isa.pm
@@ -1,15 +1,17 @@
package UNIVERSAL::isa;
# ABSTRACT: Attempt to recover from people calling UNIVERSAL::isa as a function

use strict;
use vars qw( $VERSION $recursing );
use warnings;
use 5.6.2;

use vars qw( $recursing );

use UNIVERSAL ();

use Scalar::Util 'blessed';
use warnings::register;

$VERSION = '1.03';

my ( $orig, $verbose_warning );

BEGIN { $orig = \&UNIVERSAL::isa }
Expand Down Expand Up @@ -100,8 +102,7 @@ __END__
=head1 NAME
UNIVERSAL::isa - Attempt to recover from people calling UNIVERSAL::isa as a
function
Attempt to recover from people calling UNIVERSAL::isa as a function
=head1 SYNOPSIS
Expand Down

0 comments on commit 40a7a54

Please sign in to comment.