Revision history for {{$dist->name}}
{{$NEXT}}
+ - Remove dep on File::Touch
0.002114 2012-05-07 08:05:20 America/Chicago
- Correctly set the version deployed to the version requested on install
namespace::autoclean = 0
Log::Contextual = 0.00300
File::Path = 2.08
-File::Touch = 0.08
DBIx::Class = 0.08121
Moose = 1.0
MooseX::Role::Parameterized = 0.18
mkpath(catfile(qw( t sql SQLite initialize 1.0 )));
open my $prerun, '>',
catfile(qw( t sql SQLite initialize 1.0 003-semiautomatic.pl ));
- print {$prerun} "sub {use File::Touch; touch(q(foobar));}";
+ print {$prerun} "sub { open my \$fh, '>', q(foobar);}";
close $prerun;
$dm->initialize({ version => '1.0' });
catfile(qw( t sql _preprocess_schema upgrade 1.0-2.0 003-semiautomatic.pl ));
print {$prerun}
'sub {
- use File::Touch;
- touch(q(robotparty))
+ open my $fh, ">", q(robotparty)
if $_[0]->isa("SQL::Translator::Schema")
&& $_[1]->isa("SQL::Translator::Schema");
}';