The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Build.PL 15
Changes 03
META.json 69
META.yml 45
README.md 33
lib/DBIx/QueryLog.pm 11
t/pg/21_do_explain.t 11
7 files changed (This is a version diff) 1627
@@ -25,12 +25,16 @@ my %args = (
 
     name            => 'DBIx-QueryLog',
     module_name     => 'DBIx::QueryLog',
-    allow_pure_perl => 0,
+    allow_pureperl => 0,
 
     script_files => [glob('script/*'), glob('bin/*')],
+    c_source     => [qw()],
+    PL_files => {},
 
     test_files           => ((-d '.git' || $ENV{RELEASE_TESTING}) && -d 'xt') ? 't/ xt/' : 't/',
     recursive_test_files => 1,
+
+    
 );
 if (-d 'share') {
     $args{share_dir} = 'share';
@@ -1,5 +1,8 @@
 Revision history for Perl extension DBIx::QueryLog
 
+0.38 2014-01-17T09:00:16Z
+    - Fixed test (makamaka++)
+
 0.37 2013-06-05T15:04:12Z
     - Fixed test (syohex++)
 
@@ -4,8 +4,10 @@
       "xaicron <xaicron {at} cpan.org>"
    ],
    "dynamic_config" : 0,
-   "generated_by" : "Minilla/v0.4.6",
-   "license" : "perl_5",
+   "generated_by" : "Minilla/v0.11.0",
+   "license" : [
+      "perl_5"
+   ],
    "meta-spec" : {
       "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
       "version" : "2"
@@ -19,7 +21,8 @@
          "share",
          "eg",
          "examples",
-         "author"
+         "author",
+         "builder"
       ]
    },
    "prereqs" : {
@@ -72,7 +75,7 @@
    "provides" : {
       "DBIx::QueryLog" : {
          "file" : "lib/DBIx/QueryLog.pm",
-         "version" : "0.37"
+         "version" : "0.38"
       }
    },
    "release_status" : "stable",
@@ -86,14 +89,14 @@
          "web" : "https://github.com/xaicron/p5-DBIx-QueryLog"
       }
    },
-   "version" : "0.37",
+   "version" : "0.38",
    "x_contributors" : [
       "Yuki Ibe <yibe@yibe.org>",
       "Ryuta Kamizono <kamipo@gmail.com>",
       "tokuhirom <tokuhirom@gmail.com>",
-      "makamaka <makamaka.donzoko@gmail.com>",
       "cho45 <cho45@lowreal.net>",
       "Syohei YOSHIDA <syohex@gmail.com>",
+      "makamaka <makamaka.donzoko@gmail.com>",
       "Yuji Shimada <xaicron@gmail.com>"
    ]
 }
@@ -11,7 +11,7 @@ configure_requires:
   CPAN::Meta::Prereqs: 0
   Module::Build: 0.38
 dynamic_config: 0
-generated_by: 'Minilla/v0.4.6, CPAN::Meta::Converter version 2.131490'
+generated_by: 'Minilla/v0.11.0, CPAN::Meta::Converter version 2.133380'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -26,10 +26,11 @@ no_index:
     - eg
     - examples
     - author
+    - builder
 provides:
   DBIx::QueryLog:
     file: lib/DBIx/QueryLog.pm
-    version: 0.37
+    version: 0.38
 recommends:
   DBD::Pg: 0
   DBD::SQLite: 0
@@ -45,12 +46,12 @@ resources:
   bugtracker: https://github.com/xaicron/p5-DBIx-QueryLog/issues
   homepage: https://github.com/xaicron/p5-DBIx-QueryLog
   repository: git://github.com/xaicron/p5-DBIx-QueryLog.git
-version: 0.37
+version: 0.38
 x_contributors:
   - 'Yuki Ibe <yibe@yibe.org>'
   - 'Ryuta Kamizono <kamipo@gmail.com>'
   - 'tokuhirom <tokuhirom@gmail.com>'
-  - 'makamaka <makamaka.donzoko@gmail.com>'
   - 'cho45 <cho45@lowreal.net>'
   - 'Syohei YOSHIDA <syohex@gmail.com>'
+  - 'makamaka <makamaka.donzoko@gmail.com>'
   - 'Yuji Shimada <xaicron@gmail.com>'
@@ -34,7 +34,7 @@ Currently, works on DBD::mysql, DBD::Pg and DBD::sqlite.
 
 - logger
 
-    Sets logger class (e.g. [Log::Dispach](http://search.cpan.org/perldoc?Log::Dispach))
+    Sets logger class (e.g. [Log::Dispach](https://metacpan.org/pod/Log::Dispach))
 
     Logger class must can be call \`log\` method.
 
@@ -154,7 +154,7 @@ Currently, works on DBD::mysql, DBD::Pg and DBD::sqlite.
 
         DBIx::QueryLog->disable;
 
-    SEE ALSO [Localization](http://search.cpan.org/perldoc?Localization) section.
+    SEE ALSO [Localization](https://metacpan.org/pod/Localization) section.
 
 # TIPS
 
@@ -245,4 +245,4 @@ it under the same terms as Perl itself.
 
 # SEE ALSO
 
-[DBI](http://search.cpan.org/perldoc?DBI)
+[DBI](https://metacpan.org/pod/DBI)
@@ -11,7 +11,7 @@ use Data::Dumper ();
 
 $ENV{ANSI_COLORS_DISABLED} = 1 if $^O eq 'MSWin32';
 
-our $VERSION = '0.37';
+our $VERSION = '0.38';
 
 use constant _ORG_EXECUTE               => \&DBI::st::execute;
 use constant _ORG_BIND_PARAM            => \&DBI::st::bind_param;
@@ -1,6 +1,6 @@
 use strict;
 use warnings;
-use Test::Requires qw(DBD::Pg Test::PostgreSQL);
+use Test::Requires qw(DBD::Pg Test::PostgreSQL Text::ASCIITable);
 use Test::More;
 use Test::PostgreSQL;
 use t::Util;