Bundle::Ovid - Things Ovid wants in a fresh Perl install


Bundle-Ovid documentation Contained in the Bundle-Ovid distribution.

Index


Code Index:

NAME

Top

Bundle::Ovid - Things Ovid wants in a fresh Perl install

SYNOPSIS

Top

perl -MCPAN -e 'install Bundle::Ovid'

CONTENTS

Top

aliased

Class::DBI

DateTime

DBD::SQLite

DBD::Pg

DBI

Data::Dumper::Simple

Devel::Cover

Devel::Profiler

HTML::TokeParser::Simple

Inline

Regexp::Common

Template

Test::Class

Test::Differences

Test::Exception

Test::MockModule

Test::Pod

Test::Pod::Coverage

Test::WWW::Mechanize

WWW::Mechanize

DESCRIPTION

Top

Whenever I do a fresh install of Perl, there are certain core modules that I install over and over again. I hate doing that so I built this bundle. Most modules, even if you don't use them, should be self-explanatory. Others are listed below.

* aliased

This really handy module allows you to use "short names" for long class names:

 use aliased 'Some::Ridiculously::Long::Class::Name::For::Customer';
 my $customer = Customer->new;

* Data::Dumper::Simple

Like Data::Dumper, but prints the variable name instead of just $VAR1, $VAR2, $VAR3 and so on. This makes debugging much easier.

* DBD::SQLite

If you do database work but you've never touched this module, you're missing out. No setup. No configuration. It's just there.

AUTHOR

Top

Curtis "Ovid" Poe, <moc.oohay@eop_divo_sitruc>

Reverse the name to email me.


Bundle-Ovid documentation Contained in the Bundle-Ovid distribution.

package Bundle::Ovid;

$VERSION = '1.01';

1;

__END__