The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Git::Repository::Plugin::Hooks - Work with hooks in a Git::Repository

SYNOPSIS

    use Git::Repository 'Hooks';

    my $r = Git::Repository->new();
    $r->install_hook('my-hook-file', 'pre-receive');

DESCRIPTION

Git::Repository::Plugin::Hooks adds the install_hook and hook_path methods to a Git::Repository.

METHODS

install_hook($source, $target)

Install a $target, e.g. 'pre-receive', hook into the repository.

hook_path($target)

Returns the path to a hook of the type specified by $target. See man githooks for examples, e.g. pre-commit.

LICENSE

Copyright (C) Nathaniel Nutter.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

AUTHOR

Nathaniel Nutter <nnutter@cpan.org>