Skip to content

Commit

Permalink
Checking in changes prior to tagging of version 0.25.
Browse files Browse the repository at this point in the history
Changelog diff is:

diff --git a/Changes b/Changes
index 06ea4df..d748ef1 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,10 @@ Revision history for Perl extension Perl-PrereqScanner-Lite

 {{$NEXT}}

+0.25 2015-04-18T12:14:20Z
+
+    - Fix some Moose scanners bugs
+
 0.24 2015-02-28T05:01:13Z

     - Improve plugin mechanism for extra scanners
  • Loading branch information
moznion committed Apr 18, 2015
1 parent 8b45b44 commit 2b0f86c
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 deletions.
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ Revision history for Perl extension Perl-PrereqScanner-Lite

{{$NEXT}}

0.25 2015-04-18T12:14:20Z

- Fix some Moose scanners bugs

0.24 2015-02-28T05:01:13Z

- Improve plugin mechanism for extra scanners
Expand Down
2 changes: 1 addition & 1 deletion META.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,5 +75,5 @@
"web" : "https://github.com/moznion/Perl-PrereqScanner-Lite"
}
},
"version" : "0.24"
"version" : "0.25"
}
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,18 @@ In this case `Foo` is the prereq, however `Bar` is ignored.
Perl::PrereqScanner 9.00/s -- -94%
Perl::PrereqScanner::Lite 152/s 1587% --

# NOTES

This is a quotation from [https://github.com/moznion/Perl-PrereqScanner-Lite/issues/13](https://github.com/moznion/Perl-PrereqScanner-Lite/issues/13).

Yes, it's true. This design is so ugly and not smart.
So I have to redesign and reimplement this module, and I have some plans.

If you have a mind to expand this module by implementing external scanner,
please be careful.
Every `scan_*` calls must not affect to any others through the
singleton of this module (called it `$c` in [https://github.com/moznion/Perl-PrereqScanner-Lite/blob/c03638b2e2a39d92f4d7df360af5a6be65dc417a/lib/Perl/PrereqScanner/Lite/Scanner/Moose.pm#L8](https://github.com/moznion/Perl-PrereqScanner-Lite/blob/c03638b2e2a39d92f4d7df360af5a6be65dc417a/lib/Perl/PrereqScanner/Lite/Scanner/Moose.pm#L8)).

# SEE ALSO

[Perl::PrereqScanner](https://metacpan.org/pod/Perl::PrereqScanner), [Compiler::Lexer](https://metacpan.org/pod/Compiler::Lexer)
Expand Down
4 changes: 2 additions & 2 deletions lib/Perl/PrereqScanner/Lite.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use Compiler::Lexer;
use CPAN::Meta::Requirements;
use Perl::PrereqScanner::Lite::Constants;

our $VERSION = "0.24";
our $VERSION = "0.25";

sub new {
my ($class, $opt) = @_;
Expand Down Expand Up @@ -347,7 +347,7 @@ __END__
=encoding utf-8
=for stopwords prepend
=for stopwords prepend reimplement
=head1 NAME
Expand Down

0 comments on commit 2b0f86c

Please sign in to comment.