The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Basset is an object oriented framework for Perl. It's my baby that I've (that's me, Jim Thomason - jim@bassetsoftware.com) have been developing for a little more than two years now, but it has roots going back much farther than that. Take a look at Mail::Bulkmail 1.00 from August, 1999. You'll see the start of Basset back then.

So why another new framework? Well, first of all it's not all that new. You are getting a reasonably hardened piece of software that has been around and developed for a while.

But the main reason is that I just don't like how a lot of the stuff on CPAN works together. One author writes his persistence layer with exceptions, and another writes his object framework with error codes, and another has an observer implementation, and nothing ever quite plays right together. Sure, it'll mostly work, once you hack it up a bit, but you tend to end up with comments sprinkled through your code like, "catch the exception here, since we can't use error codes, since Foo::Bar::Baz doesn't work with them." The miracle of open source software making your life easier crashes down.

Basset is designed to tie it all together. Things are implemented in a very specific, very consistent fashion, but you're not tied to any of it. You want to inherit from a different root class? You can inject one. You want to use a different persistence layer instead of the built in one? You can change it. You want to use a different templating engine? Go right ahead. You may lose some of the consistency that I feel is so valuable, but I'm not going to stop you. Basset is a framework framework - you follow the rules and you can tie together everything in your system very easily.

Why's it called Basset? Well, I figure if there can be a framework out there called Maypole, I can call mine Basset. It's somewhat adequate - basset hounds are loyal, trustworthy, play well with others, and easy to get along with. Noble qualities in software. Mainly I just like basset hounds.

INSTALLATION

To install this module, run the following commands:

    perl Makefile.PL
    make
    make test
    make install


SUPPORT AND DOCUMENTATION

After installing, you can find documentation for this framework with the perldoc command.

    perldoc Basset::Object

You can also look for information at:

    Search CPAN
        http://search.cpan.org/dist/Basset

    CPAN Request Tracker:
        http://rt.cpan.org/NoAuth/Bugs.html?Dist=Basset

    AnnoCPAN, annotated CPAN documentation:
        http://annocpan.org/dist/Basset

    CPAN Ratings:
        http://cpanratings.perl.org/d/Basset
    
    Basset Software:
    	http://www.bassetsoftware.com/perl/basset/

COPYRIGHT AND LICENCE

Copyright (C) 1999, 2000, 2002-2006 Jim Thomason

This program is released under the following license: Artistic