Skip to content

Commit

Permalink
[STD] prefix LazyMap and Actions with an STD:: prefix
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.pugscode.org/pugs@31860 c213334d-75ef-0310-aa23-eaa082d1ae64
  • Loading branch information
pmurias committed Jul 29, 2010
1 parent cdd39d4 commit f4c428c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions dist.ini
@@ -1,5 +1,5 @@
name = STD name = STD
version = 0.02 version = 0.03
license = Artistic_2_0 license = Artistic_2_0


author = Larry Wall <larry@wall.org> author = Larry Wall <larry@wall.org>
Expand All @@ -14,8 +14,8 @@ dir = data
[ModuleBuild] [ModuleBuild]
mb_class = MyBuilder mb_class = MyBuilder
[Manifest] [Manifest]
[Prereq]
[STD] [STD]
[Prereq]
File::ShareDir = 1.02 File::ShareDir = 1.02
Moose = 0 Moose = 0
YAML::XS = 0 YAML::XS = 0
Expand Down
2 changes: 1 addition & 1 deletion inc/MyBuilder.pm
Expand Up @@ -9,6 +9,6 @@ use v5.10;


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

0 comments on commit f4c428c

Please sign in to comment.