Skip to content

Commit f4c428c

Browse files
author
pmurias
committed
[STD] prefix LazyMap and Actions with an STD:: prefix
git-svn-id: http://svn.pugscode.org/pugs@31860 c213334d-75ef-0310-aa23-eaa082d1ae64
1 parent cdd39d4 commit f4c428c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: dist.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name = STD
2-
version = 0.02
2+
version = 0.03
33
license = Artistic_2_0
44

55
author = Larry Wall <[email protected]>
@@ -14,8 +14,8 @@ dir = data
1414
[ModuleBuild]
1515
mb_class = MyBuilder
1616
[Manifest]
17-
[Prereq]
1817
[STD]
18+
[Prereq]
1919
File::ShareDir = 1.02
2020
Moose = 0
2121
YAML::XS = 0

Diff for: inc/MyBuilder.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ use v5.10;
99

1010
sub new {
1111
my ($self,@args) = @_;
12-
$self->SUPER::new('pm_files'=>{map {$_ => $_} <lib/*>},@args);
12+
$self->SUPER::new('pm_files'=>{map {$_ => $_} grep {! -d $_} <lib/*>,<lib/*/*>},@args);
1313
}
1414
1;

0 commit comments

Comments
 (0)