Skip to content

Commit

Permalink
* use.pm 0.03.
Browse files Browse the repository at this point in the history
  • Loading branch information
audreyt committed Jul 19, 2011
1 parent 9928baa commit 1f63d40
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Changes
@@ -1,4 +1,4 @@
[Changes for 0.03 - Sun Jul 17 22:32:24 PDT 2011]
[Changes for 0.03 - Tue Jul 19 22:10:15 CST 2011]

* Uses perl5.pm instead of rig.pm

Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
@@ -1,2 +1,2 @@
#!/usr/bin/env perl
use inc::Module::Package 'Au:dry 0.01';
use inc::Module::Package 'Au:dry 1';
4 changes: 2 additions & 2 deletions README
Expand Up @@ -15,10 +15,10 @@ SYNOPSIS
use use '5.12.0', 'HTTP::Status' => '6.00' => [':constants'];

# ...or in your own module, importing on behalf of its caller:
package perl5::foo;
package MY::Macro;
sub import {
use use;
local @_ = qw[ methods invoker ];
local @_ = qw[ Module1 Module2 ];
goto &use::use;
}

Expand Down
4 changes: 2 additions & 2 deletions README.mkdn
Expand Up @@ -17,10 +17,10 @@ use - Import several modules with a single use statement
use use '5.12.0', 'HTTP::Status' => '6.00' => [':constants'];

# ...or in your own module, importing on behalf of its caller:
package perl5::foo;
package MY::Macro;
sub import {
use use;
local @_ = qw[ methods invoker ];
local @_ = qw[ Module1 Module2 ];
goto &use::use;
}

Expand Down
6 changes: 3 additions & 3 deletions lib/use.pm
Expand Up @@ -3,7 +3,7 @@ use strict;
use warnings;
use 5.008;
our $VERSION = '0.03';
use perl5 0.07 ();
use perl5 0.08 ();
use base 'perl5';
use version 0.86 'is_lax';

Expand Down Expand Up @@ -55,10 +55,10 @@ use - Import several modules with a single use statement
use use '5.12.0', 'HTTP::Status' => '6.00' => [':constants'];
# ...or in your own module, importing on behalf of its caller:
package perl5::foo;
package MY::Macro;
sub import {
use use;
local @_ = qw[ methods invoker ];
local @_ = qw[ Module1 Module2 ];
goto &use::use;
}
Expand Down

0 comments on commit 1f63d40

Please sign in to comment.