Skip to content

Commit

Permalink
BUG FIX: Added needed dependencies to Makefile.PL
Browse files Browse the repository at this point in the history
  • Loading branch information
logie17 committed Oct 23, 2011
1 parent af21e1c commit bb28446
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
5 changes: 4 additions & 1 deletion Changes
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ Revision history for DBIx-Class-IndexSearch-Dezi
0.02 10/19/2011 0.02 10/19/2011
Added skipping unnecessary repo files. Added skipping unnecessary repo files.


0.02 10/20/2011 0.03 10/20/2011
Removed the MANIFEST file and re-building to include everything. Removed the MANIFEST file and re-building to include everything.


0.04 10/22/2011
Fixed Makefile.PL to include all dependencies.

8 changes: 8 additions & 0 deletions Makefile.PL
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ author q{Logan Bell <loganbell@gmail.com>};
license 'perl'; license 'perl';


build_requires 'Test::More'; build_requires 'Test::More';
requires 'Moo';
requires 'Carp';
requires 'Module::Load';
requires 'DBIx::Class::Schema';
requires 'DBIx::Class::Resultset';
requires 'DBIx::Class';

test_requires 'Test::More';


auto_install; auto_install;


Expand Down
4 changes: 2 additions & 2 deletions lib/DBIx/Class/IndexSearch/Dezi.pm
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ DBIx::Class::IndexSearch::Dezi
=head1 VERSION =head1 VERSION
Version 0.01 Version 0.04
=cut =cut


our $VERSION = '0.03'; our $VERSION = '0.04';


=head1 SYNOPSIS =head1 SYNOPSIS
Expand Down

0 comments on commit bb28446

Please sign in to comment.