Contributing

This file is runnable with markatzea.

Run this file with markatzea ./CONTRIBUTING.md when setting up your dev environment.

Documentation

Generate the README.md

pod2markdown ./lib/Test/QuickGen.pm > ./README.md

Build

perl Makefile.PL
make

Test

Running tests.

make test

Git Hook

A pre-commit hook to update the docs.

#!/usr/bin/env bash

markatzea ./CONTRIBUTING.md
git add README.md

Make the script executable

chmod +x .git/hooks/pre-commit