diff --git a/Changes b/Changes index 661541b..a0fb782 100644 --- a/Changes +++ b/Changes @@ -4,6 +4,7 @@ Revision history for Perl extension Otogiri-Plugin - add document HOW TO MAKE YOUR PLUGIN - requires latest Otogiri(0.12). this version is fixed deflate bug + - add missing dependency(DBD::SQLite) 0.02 2014-01-15T01:34:05Z diff --git a/META.json b/META.json index 8eb27cb..87415c1 100644 --- a/META.json +++ b/META.json @@ -51,6 +51,7 @@ }, "test" : { "requires" : { + "DBD::SQLite" : "0", "Test::More" : "0.98" } } diff --git a/cpanfile b/cpanfile index ce2f88c..5b9cec0 100644 --- a/cpanfile +++ b/cpanfile @@ -10,5 +10,6 @@ on configure => sub { on test => sub { requires 'Test::More', '0.98'; + requires 'DBD::SQLite'; };