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

NAME

summon-file - Create new file using best possible skeleton.

USAGE

  summon-file <path/file.ext>

NOTES

.skeletons

Skeletons are located in .skeletons directory.

.skeletons/rules.pl

This file defines mapping that will be used for decision which skeleton should be used for a given file.

Example:

  registerSkeleton([PathContains('/cgi-bin/'), HasExt('pl')], 'perl/cgi.pl');
  registerSkeleton(HasExt('pl'), 'perl/script.pl');