Fixed bug where retrieve_all ignored options such as order_by
[dbsrgits/DBIx-Class.git] / Build.PL
1 use strict;
2 use Module::Build;
3
4 my %arguments = (
5     create_makefile_pl => 'passthrough',
6     license            => 'perl',
7     module_name        => 'DBIx::Class',
8     requires           => {
9         'DBI'                       => 0,
10         'UNIVERSAL::require'        => 0,
11         'NEXT'                      => 0,
12         'Scalar::Util'              => 0,
13         'SQL::Abstract'             => 1.19,
14         'SQL::Abstract::Limit'      => 0.033,
15         'DBD::SQLite'               => 1.08,
16         'Tie::IxHash'               => 0,
17     },
18     create_makefile_pl => 'passthrough',
19     create_readme      => 1,
20     test_files         => [ glob('t/*.t'), glob('t/*/*.t') ]
21 );
22
23 Module::Build->new(%arguments)->create_build_script;
24