-use ExtUtils::MakeMaker;
-
-WriteMakefile(
- NAME => 'DBIx::Class::Journal',
- VERSION_FROM => 'lib/DBIx/Class/Journal.pm',
- PREREQ_PM => { 'DBIx::Class' => 0.08,
- 'DBD::SQLite' => 0.12,
- 'Test::TempDir' => 0.04,
- },
-);
+use inc::Module::Install 0.89;
+use strict;
+use warnings;
+
+use 5.008001;
+
+# ****** DO NOT ADD OPTIONAL DEPENDENCIES. EVER. --mst ******
+
+name 'DBIx-Class-Journal';
+perl_version '5.008001';
+all_from 'lib/DBIx/Class/Journal.pm';
+
+
+test_requires 'Test::TempDir' => '0.04';
+
+requires 'DBIx::Class' => '0.08';
+
+tests_recursive ('t');
+
+resources 'license' => 'http://dev.perl.org/licenses/';
+resources 'repository' => 'http://dev.catalyst.perl.org/repos/bast/DBIx-Class-Journal/';
+
+WriteAll();
+
$history->restore;
$changeset->rollback; # all up to this point?
$changeset->reverse; # only this one
-
-why isn't this a Module::Install based app?
-add Test/TempDir.pm to build_requires
\ No newline at end of file