Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/robrwo/dist-zilla-plugin-generate-manifestskip
https://github.com/robrwo/dist-zilla-plugin-generate-manifestskip
Last synced: 11 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/robrwo/dist-zilla-plugin-generate-manifestskip
- Owner: robrwo
- Created: 2018-10-25T15:56:32.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-07-05T11:10:44.000Z (over 2 years ago)
- Last Synced: 2024-10-11T21:56:27.650Z (about 1 month ago)
- Language: Perl
- Size: 31.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: Changes
Awesome Lists containing this project
README
# NAME
Dist::Zilla::Plugin::Generate::ManifestSkip - Generate a MANIFEST.SKIP file for your distribution
# VERSION
version v0.1.7
# SYNOPSIS
In your `dist.ini` file:
```
[Generate::ManifestSkip]
:version = v0.1.3
```# DESCRIPTION
This plugin will generate a `MANIFEST.SKIP` file for your
distribution, and then prune any files that match.# ATTRIBUTES
## skipfile
This is the name of the file to generate. It defaults to `MANIFEST.SKIP`.
## add
This adds a regular expression to the ["skipfile"](#skipfile).
By defaut, the following files are added to the skipfile:
- `\.build/`
- `\.mailmap$`
- `{$dist_name}-.*/`
- `{$dist_name}-.*\.tar\.gz`
- `perltidy\.(LOG|ERR)'`
- `fatlib/`where `$dist_name` is the name of the distribution.
If the distribution has an `alienfile`, then `_alien/` will be added,
If the distribution has a `cpanfile`, then `cpanfile\.snapshot$`
will be added.## remove
This removes a regular expression from the ["skipfile"](#skipfile). Note that it
must exactly match the expression used by [Module::Manifest::Skip](https://metacpan.org/pod/Module%3A%3AManifest%3A%3ASkip).By default, the following files are already removed from the skipfile:
- `^MANIFEST\.SKIP$`
- `^dist\.ini$`
- `^weaver\.ini$`
- `^xt/`If you want them to be excluded from your distribution, then specify
them with ["add"](#add).# SEE ALSO
[Module::Manifest::Skip](https://metacpan.org/pod/Module%3A%3AManifest%3A%3ASkip)
[Dist::Zilla::Plugin::ManifestSkip](https://metacpan.org/pod/Dist%3A%3AZilla%3A%3APlugin%3A%3AManifestSkip)
# SOURCE
The development version is on github at [https://github.com/robrwo/Dist-Zilla-Plugin-Generate-ManifestSkip](https://github.com/robrwo/Dist-Zilla-Plugin-Generate-ManifestSkip)
and may be cloned from [git://github.com/robrwo/Dist-Zilla-Plugin-Generate-ManifestSkip.git](git://github.com/robrwo/Dist-Zilla-Plugin-Generate-ManifestSkip.git)# BUGS
Please report any bugs or feature requests on the bugtracker website
[https://github.com/robrwo/Dist-Zilla-Plugin-Generate-ManifestSkip/issues](https://github.com/robrwo/Dist-Zilla-Plugin-Generate-ManifestSkip/issues)When submitting a bug or request, please include a test-file or a
patch to an existing test-file that illustrates the bug or desired
feature.# AUTHOR
Robert Rothenberg
Some of the code and tests have been borrowed from [Dist::Zilla::Plugin::InstallGuide](https://metacpan.org/pod/Dist%3A%3AZilla%3A%3APlugin%3A%3AInstallGuide).
# COPYRIGHT AND LICENSE
This software is Copyright (c) 2018-2022 by Robert Rothenberg.
This is free software, licensed under:
```
The Artistic License 2.0 (GPL Compatible)
```