Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing ABSTRACT statements from packages #7

Merged
merged 1 commit into from Nov 1, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/Plack/App/FakeApache1.pm
@@ -1,5 +1,5 @@
package Plack::App::FakeApache1;
# ABSTRACT: Plack::App::FakeApache1 needs a more meaningful abstract
# ABSTRACT: Perl distro to aid in mod_perl1->PSGI migration
use strict;
use warnings;

Expand Down
1 change: 1 addition & 0 deletions lib/Plack/App/FakeApache1/Constants.pm
@@ -1,4 +1,5 @@
package Plack::App::FakeApache1::Constants;
# ABSTRACT: Define Apache1 constants
use strict;
use warnings;

Expand Down
1 change: 1 addition & 0 deletions lib/Plack/App/FakeApache1/Handler.pm
@@ -1,4 +1,5 @@
package Plack::App::FakeApache1::Handler;
# ABSTRACT: Mimic Apache's handler
use strict;
use warnings;

Expand Down
1 change: 1 addition & 0 deletions lib/Plack/App/FakeApache1/Request.pm
@@ -1,4 +1,5 @@
package Plack::App::FakeApache1::Request;
# ABSTRACT: Mimic Apache1 requests
use Moose;

use HTTP::Status qw(:is :constants);
Expand Down
1 change: 1 addition & 0 deletions lib/Plack/App/FakeModPerl1.pm
@@ -1,4 +1,5 @@
package Plack::App::FakeModPerl1;
# ABSTRACT: Mimic Apache's mod_perl1
use 5.10.1;
use Moose;

Expand Down
1 change: 1 addition & 0 deletions lib/Plack/App/FakeModPerl1/Dispatcher.pm
@@ -1,4 +1,5 @@
package Plack::App::FakeModPerl1::Dispatcher;
# ABSTRACT: Mimic Apache mod_perl1's dispatcher
use 5.10.1;
use Moose;

Expand Down
1 change: 1 addition & 0 deletions lib/Plack/App/FakeModPerl1/Server.pm
@@ -1,4 +1,5 @@
package Plack::App::FakeModPerl1::Server;
# ABSTRACT: Mimic Apache mod_perl1's server
use strict;
use warnings;
use 5.10.1;
Expand Down