switched to Build.PL, updated deps, updated docs
[dbsrgits/DBIx-Class-Schema-Loader.git] / lib / DBIx / Class / Schema / Loader.pm
index 1a67c82..4e84da0 100644 (file)
@@ -5,6 +5,11 @@ use warnings;
 use Carp;
 use UNIVERSAL::require;
 
+use base qw/DBIx::Class::Schema/;
+use base qw/Class::Data::Accessor/;
+
+__PACKAGE__->mk_classaccessor('loader');
+
 use vars qw($VERSION);
 
 # Always remember to do all digits for the version even if they're 0
@@ -12,10 +17,6 @@ use vars qw($VERSION);
 # brain damage and presumably various other packaging systems too
 $VERSION = '0.01000';
 
-use base qw/DBIx::Class::Schema/;
-
-__PACKAGE__->mk_classaccessor('loader');
-
 =head1 NAME
 
 DBIx::Class::Schema::Loader - Dynamic definition of a DBIx::Class::Schema
@@ -111,7 +112,7 @@ sub load_from_connection {
 
 Brandon Black, C<bblack@gmail.com>
 
-Sebastian Riedel, C<sri@oook.de> (DBIx::Class::Loader, which this module is branched from)
+Based on L<DBIx::Class::Loader> by Sebastian Riedel
 
 Based upon the work of IKEBE Tomohiro