Skip to content

Commit

Permalink
Checking in changes prior to tagging of version 0.06.
Browse files Browse the repository at this point in the history
Changelog diff is:

diff --git a/Changes b/Changes
index 3513484..1400e95 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,9 @@ Revision history for Perl extension App::Prove::Plugin::MySQLPool

 {{$NEXT}}

+0.06 2016-12-20T12:07:54Z
+    - using Test::mysqld->start_mysqls in launch mysqld servers (shogo82148)
+
 0.05 2014-09-15T11:43:21Z
      - add custom my.cnf support
  • Loading branch information
mackee committed Dec 20, 2016
1 parent 3621773 commit 0bb12fe
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 62 deletions.
57 changes: 2 additions & 55 deletions Build.PL
Original file line number Diff line number Diff line change
Expand Up @@ -4,62 +4,9 @@
# =========================================================================

use 5.008_001;

use strict;
use warnings;
use utf8;

use Module::Build;
use File::Basename;
use File::Spec;

my %args = (
license => 'perl',
dynamic_config => 0,

configure_requires => {
'Module::Build' => 0.38,
},

name => 'App-Prove-Plugin-MySQLPool',
module_name => 'App::Prove::Plugin::MySQLPool',
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';
}

my $builder = Module::Build->subclass(
class => 'MyBuilder',
code => q{
sub ACTION_distmeta {
die "Do not run distmeta. Install Minilla and `minil install` instead.\n";
}
sub ACTION_installdeps {
die "Do not run installdeps. Run `cpanm --installdeps .` instead.\n";
}
}
)->new(%args);
$builder->create_build_script();

use File::Copy;

print "cp META.json MYMETA.json\n";
copy("META.json","MYMETA.json") or die "Copy failed(META.json): $!";
use Module::Build::Tiny 0.035;

if (-f 'META.yml') {
print "cp META.yml MYMETA.yml\n";
copy("META.yml","MYMETA.yml") or die "Copy failed(META.yml): $!";
} else {
print "There is no META.yml... You may install this module from the repository...\n";
}
Build_PL();

3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ Revision history for Perl extension App::Prove::Plugin::MySQLPool

{{$NEXT}}

0.06 2016-12-20T12:07:54Z
- using Test::mysqld->start_mysqls in launch mysqld servers (shogo82148)

0.05 2014-09-15T11:43:21Z
- add custom my.cnf support

Expand Down
14 changes: 8 additions & 6 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"Masakazu Ohtsuka <o.masakazu@gmail.com>"
],
"dynamic_config" : 0,
"generated_by" : "Minilla/v2.1.1, CPAN::Meta::Converter version 2.141520",
"generated_by" : "Minilla/v3.0.7, CPAN::Meta::Converter version 2.150005",
"license" : [
"perl_5"
],
Expand Down Expand Up @@ -36,7 +36,7 @@
},
"configure" : {
"requires" : {
"Module::Build" : "0.38"
"Module::Build::Tiny" : "0.035"
}
},
"develop" : {
Expand All @@ -55,7 +55,7 @@
"File::Temp" : "0",
"Mouse" : "0",
"POSIX::AtFork" : "0",
"Test::mysqld" : "0",
"Test::mysqld" : "0.20",
"parent" : "0"
}
}
Expand All @@ -68,12 +68,14 @@
"homepage" : "https://github.com/mash/App-Prove-Plugin-MySQLPool",
"repository" : {
"type" : "git",
"url" : "git://github.com/mash/App-Prove-Plugin-MySQLPool",
"url" : "git://github.com/mash/App-Prove-Plugin-MySQLPool.git",
"web" : "https://github.com/mash/App-Prove-Plugin-MySQLPool"
}
},
"version" : "0.05",
"version" : "0.06",
"x_contributors" : [
"Ichinose Shogo <shogo82148@gmail.com>",
"mackee <macopy123@gmail.com>"
]
],
"x_serialization_backend" : "JSON::PP version 2.27300"
}
2 changes: 1 addition & 1 deletion lib/App/Prove/Plugin/MySQLPool.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use File::Temp;
use POSIX::AtFork;
use Test::mysqld::Pool;

our $VERSION = '0.05';
our $VERSION = '0.06';

sub load {
my ($class, $prove) = @_;
Expand Down

0 comments on commit 0bb12fe

Please sign in to comment.