Module-Make

 view release on metacpan or  search on metacpan

lib/Module/Make.pm  view on Meta::CPAN

    
    # Generate mininal Makefile
    $self->create_new_makefile;
    
    # sleep 1
    # touch .stamps/new_environment

    # tell user to now edit the `config.yaml` file
}

sub update_environment {
    die "Can't update existing Module::Make environment yet";
}

sub sanity_check_new_cli_args {
    my $self = shift;
    my $dir = io->dir(shift || '.');
    die "Unknown args '@_' to Module::Make=new\n" if @_;
    $dir = $self->check_new_dir_path($dir);
    $self->src_dir($dir);
}

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 1.239 second using v1.00-cache-2.02-grep-82fe00e-cpan-4673cadbf75 )