Skip to content

Commit

Permalink
Build results of 94993f5 (on master)
Browse files Browse the repository at this point in the history
  • Loading branch information
kentfredric committed Aug 7, 2014
1 parent a8f41b9 commit 7e3dde2
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 4 deletions.
2 changes: 2 additions & 0 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@
"Regexp::Grammars" : "0",
"perl" : "5.010000",
"strict" : "0",
"utf8" : "0",
"warnings" : "0"
}
},
Expand Down Expand Up @@ -178,6 +179,7 @@
"Test::Pod" : "1.48",
"Test::Pod::Coverage" : "1.10",
"strict" : "1.08",
"utf8" : "1.14",
"warnings" : "1.24"
},
"perl" : {
Expand Down
2 changes: 2 additions & 0 deletions META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ requires:
Regexp::Grammars: '0'
perl: '5.010000'
strict: '0'
utf8: '0'
warnings: '0'
resources:
bugtracker: https://github.com/kentnl/Regexp-Grammars-Common-String/issues
Expand Down Expand Up @@ -89,6 +90,7 @@ x_BuiltWith:
Test::Pod: '1.48'
Test::Pod::Coverage: '1.10'
strict: '1.08'
utf8: '1.14'
warnings: '1.24'
perl:
original: v5.21.1
Expand Down
2 changes: 2 additions & 0 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ my %WriteMakefileArgs = (
"PREREQ_PM" => {
"Regexp::Grammars" => 0,
"strict" => 0,
"utf8" => 0,
"warnings" => 0
},
"TEST_REQUIRES" => {
Expand All @@ -44,6 +45,7 @@ my %FallbackPrereqs = (
"Regexp::Grammars" => 0,
"Test::More" => "0.96",
"strict" => 0,
"utf8" => 0,
"warnings" => 0
);

Expand Down
15 changes: 11 additions & 4 deletions lib/Regexp/Grammars/Common/String.pm
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
use 5.010000;
use strict;
use warnings;
use utf8;

package Regexp::Grammars::Common::String;

Expand All @@ -10,9 +12,8 @@ our $VERSION = '1.000000';
our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY

use Regexp::Grammars;
use 5.010000;

## no critic (RegularExpressions Documentation)
## no critic (RegularExpressions Documentation Variables::ProhibitUnusedVarsStricter)
my $grammar = qr{
<grammar: Regexp::Grammars::Common::String>
Expand Down Expand Up @@ -81,6 +82,9 @@ my $grammar = qr{









Expand Down Expand Up @@ -124,9 +128,12 @@ version 1.000000
L<Regexp::Grammars|Regexp::Grammars> is just too useful to not use, but too pesky and confusing for new people.
Some of the more complex things involve string extraction and escape-handling, and I seriously spent the better part 2 hours learning how to make this work. So, even if this module is not immediately useful, it may serve as an educational tool for others.
Some of the more complex things involve string extraction and escape-handling, and I seriously spent the better part 2 hours
learning how to make this work. So, even if this module is not immediately useful, it may serve as an educational tool for
others.
I probably should have delved deeper into the L<Regexp::Common|Regexp::Common> Family, but I couldn't find one in there that did exactly what I wanted.
I probably should have delved deeper into the L<Regexp::Common|Regexp::Common> Family, but I couldn't find one in there that
did exactly what I wanted.
At present, this module only provides one rule, L</String>, but I will probably add a few more later.
Expand Down
1 change: 1 addition & 0 deletions t/00-report-prereqs.dd
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ do { my $x = {
'Regexp::Grammars' => '0',
'perl' => '5.010000',
'strict' => '0',
'utf8' => '0',
'warnings' => '0'
}
},
Expand Down

0 comments on commit 7e3dde2

Please sign in to comment.