summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShlomi Fish <shlomif@shlomifish.org>2016-11-29 11:32:49 +0200
committerShlomi Fish <shlomif@shlomifish.org>2016-11-29 11:32:49 +0200
commit6db061419eba7603efbfc23627d6cc4585b3bbde (patch)
tree3fe59b63f2422f16de200a25ad78b0807d4fad1b
parent154a6efcca65ff6942b865d621a2d1a15737f05b (diff)
Avoid [VersionFromModule] and sort the dist.ini.
Thanks to ETHER for the tip.
-rw-r--r--dist.ini8
-rw-r--r--lib/File/Remove.pm6
2 files changed, 7 insertions, 7 deletions
diff --git a/dist.ini b/dist.ini
index d9d55c2..0725095 100644
--- a/dist.ini
+++ b/dist.ini
@@ -8,19 +8,17 @@ copyright_year = 1998
-bundle = @Basic
-remove = License
[AutoPrereqs]
-[PodSyntaxTests]
-[PodCoverageTests]
[MetaResources]
bugtracker.web = http://rt.cpan.org/NoAuth/Bugs.html?Dist=File-Remove
bugtracker.mailto = bug-file-remove@rt.cpan.org
repository.url = git://github.com/shlomif/File-Remove.git
repository.web = https://github.com/shlomif/File-Remove
repository.type = git
+[PodCoverageTests]
+[PodSyntaxTests]
[PodWeaver]
+[RewriteVersion]
[Test::Compile]
-fake_home = 1
-skip = bump-ver
[Test::CPAN::Changes]
[Test::Kwalitee::Extra]
[Test::TrailingSpace]
-[VersionFromModule]
diff --git a/lib/File/Remove.pm b/lib/File/Remove.pm
index e1ec9fc..f39ae23 100644
--- a/lib/File/Remove.pm
+++ b/lib/File/Remove.pm
@@ -4,10 +4,12 @@ use 5.00503;
use strict;
use warnings;
-use vars qw{ $VERSION @ISA @EXPORT_OK };
+use vars qw{ @ISA @EXPORT_OK };
use vars qw{ $DEBUG $unlink $rmdir };
+
+our $VERSION = '1.57';
+
BEGIN {
- $VERSION = '1.57';
# $VERSION = eval $VERSION;
@ISA = qw{ Exporter };
@EXPORT_OK = qw{ remove rm clear trash };