Add .gitignore, remove test db
[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 build_requires 'SQL::Translator' => '0.11016';
17 build_requires 'Scalar::Util' => '1.18';
18 #ANYONE WANT TO GIVE ME VERSION NUMBERS??? PLEASE??
19 build_requires 'DBD::SQLite'  => 0;
20
21 auto_install;
22 WriteAll;