Skip to content

Commit

Permalink
initial import
Browse files Browse the repository at this point in the history
git-svn-id: svn://badgerpower.com/Badger/trunk/badger@1 f7e19ab9-6750-0410-bcef-57680045ec6a
  • Loading branch information
abw committed Jun 24, 2008
0 parents commit c4db17e
Show file tree
Hide file tree
Showing 46 changed files with 6,970 additions and 0 deletions.
22 changes: 22 additions & 0 deletions Makefile.PL
@@ -0,0 +1,22 @@
use ExtUtils::MakeMaker;

my %opts = (
'NAME' => 'Badger',
'VERSION_FROM' => 'lib/Badger.pm',
'PMLIBDIRS' => [ 'lib' ],
'dist' => {
'COMPRESS' => 'gzip',
'SUFFIX' => 'gz',
},
'test' => {
TESTS => 't/*.t t/*/*.t',
},
);

if ($ExtUtils::MakeMaker::VERSION >= 5.43) {
$opts{ AUTHOR } = 'Andy Wardley <abw@wardley.org>';
$opts{ ABSTRACT } = 'Application programming toolkit',
}

WriteMakefile( %opts );

1 change: 1 addition & 0 deletions TODO
@@ -0,0 +1 @@
* Move Badger::Exception to Badger::Error and clean out
57 changes: 57 additions & 0 deletions lib/Badger.pm
@@ -0,0 +1,57 @@
package Badger;

use 5.6.1;
use Badger::Class
debug => 0,
base => 'Badger::Base',
utils => 'UTILS';

our $VERSION = 0.01;
our $PROTOTYPE;
our $AUTOLOAD;

1;

__END__
=head1 NAME
Badger - application programming toolkit
=head1 SYNOPSIS
use Badger;
# forage for nuts and berries in the forest
=head1 DESCRIPTION
TODO
=head1 METHODS
TODO
=head1 AUTHOR
Andy Wardley E<lt>abw@wardley.orgE<gt>
=head1 COPYRIGHT
Copyright (C) 1996-2008 Andy Wardley. All Rights Reserved.
This module is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
=cut
# Local Variables:
# mode: perl
# perl-indent-level: 4
# indent-tabs-mode: nil
# End:
#
# vim: expandtab shiftwidth=4:

0 comments on commit c4db17e

Please sign in to comment.