Skip to content

Commit

Permalink
Remove unused module.
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaumeaubert committed Jan 31, 2015
1 parent 3df434b commit 57f9cdb
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 17 deletions.
1 change: 0 additions & 1 deletion Build.PL
Expand Up @@ -41,7 +41,6 @@ my $builder = $class->new(
dist_version_from => 'lib/Perl/Critic/Policy/CodeLayout/TabIndentSpaceAlign.pm',
build_requires =>
{
'File::Spec' => 0,
'Test::FailWarnings' => 0,
'Test::More' => 0,
'Test::Perl::Critic::Policy' => 0,
Expand Down
1 change: 0 additions & 1 deletion META.json
Expand Up @@ -16,7 +16,6 @@
"prereqs" : {
"build" : {
"requires" : {
"File::Spec" : "0",
"Test::FailWarnings" : "0",
"Test::More" : "0",
"Test::Perl::Critic::Policy" : "0"
Expand Down
1 change: 0 additions & 1 deletion META.yml
Expand Up @@ -3,7 +3,6 @@ abstract: 'Use tabs for indenting, spaces for aligning.'
author:
- 'Guillaume Aubert <aubertg@cpan.org>'
build_requires:
File::Spec: '0'
Test::FailWarnings: '0'
Test::More: '0'
Test::Perl::Critic::Policy: '0'
Expand Down
25 changes: 12 additions & 13 deletions Makefile.PL
Expand Up @@ -3,24 +3,23 @@ require 5.006;
use ExtUtils::MakeMaker;
WriteMakefile
(
'test' => {
'TESTS' => 't/*.t t/CodeLayout/*.t'
},
'PL_FILES' => {},
'INSTALLDIRS' => 'site',
'NAME' => 'Perl::Critic::Policy::CodeLayout::TabIndentSpaceAlign',
'EXE_FILES' => [],
'VERSION_FROM' => 'lib/Perl/Critic/Policy/CodeLayout/TabIndentSpaceAlign.pm',
'PREREQ_PM' => {
'Carp' => 0,
'File::Spec' => 0,
'Perl::Critic::Policy' => 0,
'Perl::Critic::Utils' => 0,
'Readonly' => 0,
'Try::Tiny' => 0,
'Test::FailWarnings' => 0,
'Readonly' => 0,
'Carp' => 0,
'Test::More' => 0,
'Perl::Critic::Policy' => 0,
'Test::Perl::Critic::Policy' => 0,
'Try::Tiny' => 0
},
'INSTALLDIRS' => 'site',
'EXE_FILES' => [],
'PL_FILES' => {},
'test' => {
'TESTS' => 't/*.t t/CodeLayout/*.t'
}
'Perl::Critic::Utils' => 0
}
)
;
1 change: 0 additions & 1 deletion xt/perlcritic.t
Expand Up @@ -3,7 +3,6 @@
use strict;
use warnings;

use File::Spec;
use Test::More;


Expand Down

0 comments on commit 57f9cdb

Please sign in to comment.