NAME
App::GitHooks::Plugin::Test::PrintSTDERR - A test plugin that allows printing a specific string to STDERR.
DESCRIPTION
SYNOPSIS
use App::GitHooks::Plugin::Test::PrintSTDERR;
# In .githooksrc.
# [Test::PrintSTDERR]
# pre-commit = Triggered a pre-commit plugin!
# prepare-commit-msg = Triggered a prepare-commit-msg plugin!
# Run hooks calling the plugin.
VERSION
Version 1.9.0
METHODS
get_file_pattern()
Return a pattern to filter the files this plugin should analyze.
my $file_pattern = App::GitHooks::Plugin::Test::PrintSTDERR->get_file_pattern(
app => $app,
);
get_file_check_description()
Return a description of the check performed on files by the plugin and that will be displayed to the user, if applicable, along with an indication of the success or failure of the plugin.
my $description = App::GitHooks::Plugin::Test::PrintSTDERR->get_file_check_description();
SUPPORTED HOOKS
This plugin supports all the hooks defined in App::GitHooks::Hook::*
, including file-level checks for the appropriate hooks.
- run_applypatch_msg
- run_commit_msg
- run_post_applypatch
- run_post_checkout
- run_post_commit
- run_post_merge
- run_post_receive
- run_post_rewrite
- run_post_update
- run_pre_applypatch
- run_pre_auto_gc
- run_pre_commit
- run_pre_commit_file
- run_pre_push
- run_pre_rebase
- run_pre_receive
- run_prepare_commit_msg
- run_update
BUGS
Please report any bugs or feature requests through the web interface at https://github.com/guillaumeaubert/App-GitHooks/issues/new. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc App::GitHooks::Plugin::Test::PrintSTDERR
You can also look for information at:
GitHub's request tracker
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
MetaCPAN
AUTHOR
Guillaume Aubert, <aubertg at cpan.org>
.
COPYRIGHT & LICENSE
Copyright 2013-2017 Guillaume Aubert.
This code is free software; you can redistribute it and/or modify it under the same terms as Perl 5 itself.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the LICENSE file for more details.