App-Git-Autofixup

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
my $deps = get_deps();
my $test_deps = get_test_deps();
if (eval { ExtUtils::MakeMaker->VERSION(6.46) }) {
    $args{TEST_REQUIRES} = $test_deps;
    $args{PREREQ_PM} = $deps;
} else {
    $args{PREREQ_PM} = {%$deps, %$test_deps}
}
 
if (!caller()) {
    WriteMakefile(%args);
}
 
1;

git-autofixup  view on Meta::CPAN

767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
    for my $sha (@ordered_shas) {
        my $fixup_hunks = $hunks_for->{$sha};
        commit_fixup($sha, $fixup_hunks);
    }
    if ($use_detailed_exit_codes) {
        return exit_code($hunks, $hunks_for);
    }
    return 0;
}
 
if (!caller()) {
    exit main();
}
1;
 
__END__
 
=pod
 
=head1 NAME



( run in 0.361 second using v1.01-cache-2.11-cpan-e9199f4ba4c )