DBIx::Class::Bundled
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Bundled.pm
CommitLineData
f4a8b21e 1package DBIx::Class::Bundled;
2
3use strict;
4use warnings;
5use File::Spec;
6
7our $HERE = File::Spec->catdir(
8 File::Spec->rel2abs(
9 join '', (File::Spec->splitpath(__FILE__))[0,1]
10 ),
11 'Bundled'
12 );
13
14($HERE) = ($HERE =~ /^(.*)$/); # screw you, taint mode
15
16sub import {
17 unshift @INC, $HERE;
18}
19
201;