rename restrict by user
[dbsrgits/DBIx-Class-Schema-RestrictWithObject.git] / Makefile.PL
1 #! /usr/bin/perl -w
2
3 # Load the Module::Install bundled in ./inc/
4 use inc::Module::Install;
5
6 # Define metadata
7 name 'DBIx-Class-Schema-RestrictWithObject';
8 abstract 'Restrict ResultSets';
9 all_from 'lib/DBIx/Class/Schema/RestrictWithObject.pm';
10
11 # Specific dependencies
12 requires 'DBIx::Class' => 0.07000; ##just a safe number, no rhyme or reason
13
14 build_requires 'Test::More' => 0;
15
16 #ANYONE WANT TO GIVE ME VERSION NUMBERS??? PLEASE??
17 build_requires 'SQL::Translator' => 0;
18 build_requires 'Test::More' => 0;
19 build_requires 'Scalar::Util' => 0;
20 build_requires 'DBD::SQLite'  => 0;
21
22 auto_install;
23 WriteAll;