]> git.vpit.fr Git - perl/modules/indirect.git/blobdiff - lib/indirect.pm
Preferring to say 'to say'
[perl/modules/indirect.git] / lib / indirect.pm
index 6aa0d9617350503cb35d8a62fa7a2b0b9f649732..bc59529d18034f89c19587a867f6d717a62a4ce6 100644 (file)
@@ -9,13 +9,13 @@ indirect - Lexically warn about using the indirect object syntax.
 
 =head1 VERSION
 
-Version 0.02
+Version 0.05
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.02';
+ $VERSION = '0.05';
 }
 
 =head1 SYNOPSIS
@@ -31,15 +31,17 @@ BEGIN {
 
 =head1 DESCRIPTION
 
-When enabled (or disabled as some may prefer, since you actually turn it on by calling C<no indirect>), this pragma warns about indirect object syntax constructs that may have slipped into your code. This syntax is now considered harmful, since its parsing has many quirks and its use is error prone (when C<sub> isn't defined, C<sub $x> is actually interpreted as C<< $x->sub >>).
+When enabled (or disabled as some may prefer to say, since you actually turn it on by calling C<no indirect>), this pragma warns about indirect object syntax constructs that may have slipped into your code. This syntax is now considered harmful, since its parsing has many quirks and its use is error prone (when C<sub> isn't defined, C<sub $x> is actually interpreted as C<< $x->sub >>).
 
 It currently does not warn when the object is enclosed between braces (like C<meth { $obj } @args>) or for core functions (C<print> or C<say>). This may change in the future, or may be added as optional features that would be enabled by passing options to C<unimport>.
 
+This module is B<not> a source filter.
+
 =head1 METHODS
 
 =head2 C<unimport @opts>
 
-Magically called when C<no indirect @args> is encountered. Turns the module on. If C<@opts> contains C<':fatal'>, the module will croak on the first indirect syntax met.
+Magically called when C<no indirect @opts> is encountered. Turns the module on. If C<@opts> contains C<':fatal'>, the module will croak on the first indirect syntax met.
 
 =head2 C<import>
 
@@ -67,8 +69,6 @@ L<perl> 5.9.4.
 
 L<XSLoader> (standard since perl 5.006).
 
-Tests require L<IPC::Cmd> (standard since 5.9.5).
-
 =head1 AUTHOR
 
 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
@@ -85,6 +85,8 @@ You can find documentation for this module with the perldoc command.
 
     perldoc indirect
 
+Tests code coverage report is available at L<http://www.profvince.com/perl/cover/indirect>.
+
 =head1 ACKNOWLEDGEMENTS
 
 Bram, for motivation and advices.