Pinwheel

 view release on metacpan or  search on metacpan

lib/Module/Build/PinwheelApp.pm  view on Meta::CPAN

  };
  File::Find::find({wanted => $subr, no_chdir => 1}, $dir);
  return \@result;
}

sub copy_all_by_type {
    my ($self, $dir) = @_;
    my $files = $self->find_pinwheel_files($dir);
    foreach my $file (@$files) {
      next if $file =~ /\/\./;
      $self->copy_if_modified(from => $file, to => File::Spec->catfile($self->blib, $file) );
    }
}



sub ACTION_setup_test_db {
    my ($self) = @_;
    
    $self->depends_on('build');



( run in 1.142 second using v1.01-cache-2.11-cpan-39bf76dae61 )