Skip to content

Commit

Permalink
- Added HTML::Template::Expr.
Browse files Browse the repository at this point in the history
      - Added Bundle::Theory::Apache.
      - Added Bundle::Theory::Apache2.
  • Loading branch information
theory committed Apr 10, 2008
1 parent 41da043 commit bf07eee
Show file tree
Hide file tree
Showing 7 changed files with 139 additions and 4 deletions.
3 changes: 3 additions & 0 deletions Changes
@@ -1,6 +1,9 @@
Revision history for Perl extension Bundle::Theory.

1.05
- Added HTML::Template::Expr.
- Added Bundle::Theory::Apache.
- Added Bundle::Theory::Apache2.

1.04 2008-04-09T22:17:16
- Added SVN::Notify::Filter::Markdown.
Expand Down
2 changes: 2 additions & 0 deletions MANIFEST
@@ -1,6 +1,8 @@
Build.PL
Changes
lib/Bundle/Theory.pm
lib/Bundle/Theory/Apache.pm
lib/Bundle/Theory/Apache2.pm
Makefile.PL
MANIFEST This list of files
META.yml
Expand Down
10 changes: 8 additions & 2 deletions META.yml
@@ -1,6 +1,6 @@
---
name: Bundle-Theory
version: 1.04
version: 1.05
author:
- 'David E. Wheeler <david@kineticode.com>'
abstract: A bundle to install all of Theory's favorite modules
Expand All @@ -17,7 +17,13 @@ recommends:
provides:
Bundle::Theory:
file: lib/Bundle/Theory.pm
version: 1.04
version: 1.05
Bundle::Theory::Apache:
file: lib/Bundle/Theory/Apache.pm
version: 1.05
Bundle::Theory::Apache2:
file: lib/Bundle/Theory/Apache2.pm
version: 1.05
generated_by: Module::Build version 0.280801
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.2.html
Expand Down
4 changes: 3 additions & 1 deletion lib/Bundle/Theory.pm
Expand Up @@ -29,7 +29,7 @@ Bundle::Theory - A bundle to install all of Theory's favorite modules
=head1 Description
This bundle contains all of Theory's most-used CPAN modules. These are
essentials whenever I he builds a new system.
essentials whenever he builds a new system.
=head1 CONTENTS
Expand Down Expand Up @@ -291,6 +291,8 @@ HTML::Mason
HTML::Template
HTML::Template::Expr
Template
Imager
Expand Down
64 changes: 64 additions & 0 deletions lib/Bundle/Theory/Apache.pm
@@ -0,0 +1,64 @@
package Bundle::Theory::Apache;

# $Id: Theory.pm 3635 2008-04-09 22:19:51Z david $

our $VERSION = '1.05';

1;
__END__
=head1 Name
Bundle::Theory::Apache - A bundle to install all of Theory's favorite mod_perl modules
=head1 Synopsis
perl -MCPAN -e 'install Bundle::Theory::Apache'
=head1 Description
This bundle contains all of Theory's most-used mod_perl-related modules. These
are essentials whenever he builds a new system.
=head1 CONTENTS
Apache::Test
Apache::Request
CGI
HTML::Mason
MasonX::Interp::WithCallbacks
Apache::Session
Apache::DBI
Apache::Dir
Cache::Cache
Cache::Mmap
URI::Escape
HTML::Template
HTML::Template::Expr
Template
Apache::FakeTable
=head1 Author
David E. Wheeler <david@kineticode.com>
=head1 License
This module is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.
=cut
56 changes: 56 additions & 0 deletions lib/Bundle/Theory/Apache2.pm
@@ -0,0 +1,56 @@
package Bundle::Theory::Apache2;

# $Id: Theory.pm 3635 2008-04-09 22:19:51Z david $

our $VERSION = '1.05';

1;
__END__
=head1 Name
Bundle::Theory::Apache2 - A bundle to install all of Theory's favorite mod_perl 2 modules
=head1 Synopsis
perl -MCPAN -e 'install Bundle::Theory::Apache'
=head1 Description
This bundle contains all of Theory's most-used mod_perl 2-related modules.
These are essentials whenever he builds a new system.
=head1 CONTENTS
Apache::Test
Apache2::Request
CGI
HTML::Mason
MasonX::Interp::WithCallbacks
Cache::Cache
Cache::Mmap
URI::Escape
HTML::Template
HTML::Template::Expr
Template
=head1 Author
David E. Wheeler <david@kineticode.com>
=head1 License
This module is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.
=cut
4 changes: 3 additions & 1 deletion t/basic.t
@@ -1,2 +1,4 @@
use Test::More tests => 1;
use Test::More tests => 3;
use_ok 'Bundle::Theory';
use_ok 'Bundle::Theory::Apache';
use_ok 'Bundle::Theory::Apache2';

0 comments on commit bf07eee

Please sign in to comment.