Skip to content

Commit

Permalink
initial stub
Browse files Browse the repository at this point in the history
  • Loading branch information
xdg committed Jun 29, 2011
0 parents commit 7ea7b16
Show file tree
Hide file tree
Showing 5 changed files with 65 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/Task-CPAN-Reporter*
.build
5 changes: 5 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Revision history for Task-CPAN-Reporter

{{$NEXT}}
-

17 changes: 17 additions & 0 deletions dist.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name = Task-CPAN-Reporter
author = David Golden <dagolden@cpan.org>
license = Apache_2_0
copyright_holder = David Golden
copyright_year = 2011

[MetaResources]
;repository.url = git://github.com/dagolden/task-cpan-reporter.git
;repository.web = http://github.com/dagolden/task-cpan-reporter/
;bugtracker.web = http://rt.cpan.org/NoAuth/Bugs.html?Dist=Task-CPAN-Reporter

[@DAGOLDEN]
git_remote = github
is_task = 1

[CriticTests]

21 changes: 21 additions & 0 deletions lib/Task/CPAN/Reporter.pm
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
use strict;
use warnings;
package Task::CPAN::Reporter;
# ABSTRACT: No abstract given for Task::CPAN::Reporter

=pod
=pkgroup Modules That are Useful
=pkg Package::Name 0 need at least version 0
=head1 USAGE
This module has no direct functionality. It is merely a placeholder
for prerequisites. Installing it will ensure all the prerequisites listed
above are satisfied.
=cut

1;

20 changes: 20 additions & 0 deletions perlcritic.rc
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
severity = 5
verbose = 8

[Variables::ProhibitPunctuationVars]
allow = $@ $!

# Turn these off
[-BuiltinFunctions::ProhibitStringyEval]
[-ControlStructures::ProhibitPostfixControls]
[-ControlStructures::ProhibitUnlessBlocks]
[-Documentation::RequirePodSections]
[-InputOutput::ProhibitInteractiveTest]
[-Miscellanea::RequireRcsKeywords]
[-References::ProhibitDoubleSigils]
[-RegularExpressions::RequireExtendedFormatting]
[-InputOutput::ProhibitTwoArgOpen]

# Turn this on
[Lax::ProhibitStringyEval::ExceptForRequire]

0 comments on commit 7ea7b16

Please sign in to comment.