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