{"id":19640491,"url":"https://github.com/kentnl/dist-zilla-app-command-dumpwith","last_synced_at":"2026-06-13T11:31:47.857Z","repository":{"id":11765572,"uuid":"14300686","full_name":"kentnl/Dist-Zilla-App-Command-dumpwith","owner":"kentnl","description":"Dump all plugins that 'do' a certain role","archived":false,"fork":false,"pushed_at":"2017-03-07T07:46:37.000Z","size":373,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-09T18:57:45.346Z","etag":null,"topics":["dist-zilla","perl"],"latest_commit_sha":null,"homepage":null,"language":"Perl","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kentnl.png","metadata":{"files":{"readme":"README.mkdn","changelog":"Changes","contributing":"CONTRIBUTING.pod","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-11-11T12:50:11.000Z","updated_at":"2017-02-28T02:26:03.000Z","dependencies_parsed_at":"2022-09-13T08:41:33.836Z","dependency_job_id":null,"html_url":"https://github.com/kentnl/Dist-Zilla-App-Command-dumpwith","commit_stats":null,"previous_names":[],"tags_count":22,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kentnl%2FDist-Zilla-App-Command-dumpwith","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kentnl%2FDist-Zilla-App-Command-dumpwith/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kentnl%2FDist-Zilla-App-Command-dumpwith/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kentnl%2FDist-Zilla-App-Command-dumpwith/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kentnl","download_url":"https://codeload.github.com/kentnl/Dist-Zilla-App-Command-dumpwith/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240947648,"owners_count":19883030,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dist-zilla","perl"],"created_at":"2024-11-11T14:05:56.722Z","updated_at":"2026-06-13T11:31:47.822Z","avatar_url":"https://github.com/kentnl.png","language":"Perl","funding_links":[],"categories":[],"sub_categories":[],"readme":"# NAME\n\nDist::Zilla::App::Command::dumpwith - Dump all plugins that 'do' a certain role\n\n# VERSION\n\nversion 0.003003\n\n# SYNOPSIS\n\n    cd $PROJECT;\n    dzil dumpwith -- -VersionProvider\n\n    dzil dumpwith --color-theme=basic::plain -- -FileGatherer   # plain text\n    dzil dumpwith --color-theme=basic::green -- -BeforeRelease  # green text\n\nIf you are using an HTML-enabled POD viewer, you should see a screenshot of this in action:\n\n( Everyone else can visit [http://kentnl.github.io/screenshots/Dist-Zilla-App-Command-dumpwith/0.003000/example\\_01.png](http://kentnl.github.io/screenshots/Dist-Zilla-App-Command-dumpwith/0.003000/example_01.png) )\n\n\u003cdiv\u003e\n    \u003ccenter\u003e\n      \u003cimg src=\"http://kentnl.github.io/screenshots/Dist-Zilla-App-Command-dumpwith/0.003000/example_01.png\"\n           alt=\"Screenshot\"\n           width=\"740\"\n           height=\"586\"/\u003e\n    \u003c/center\u003e\n\u003c/div\u003e\n\n# DESCRIPTION\n\nThis command, like its sibling [`dumpphases`](https://metacpan.org/pod/Dist::Zilla::App::Command::dumpphases), exists to help make understanding\nwhat is going on in `Dist::Zilla` a little easier.\n\nAt least, having this command means debugging certain kinds of problems is more obvious.\n\nIf you want to see all plugins that are adding files to your dist?\n\n    dzil dumpwith -- -FileGatherer\n\nThough, of course, this requires some knowledge of what roles are applicable.\n\nIf you want to turn colors off, use [`Term::ANSIcolor`'s environment variable](https://metacpan.org/pod/Term::ANSIColor)\n`ANSI_COLORS_DISABLED`. E.g.,\n\n    ANSI_COLORS_DISABLED=1 dzil dumpphases\n\nAlternatively, specify a color-free theme:\n\n    dzil dumpwith --color-theme=basic::plain -- -VersionProvider\n\n# KNOWN ISSUES\n\nPrior to `Dist::Zilla 6.0`, the format\n\n    dzil dumpwith -VersionProvider\n\nWas fine.\n\nHowever, since [`Dist::Zilla 6.0`](https://metacpan.org/changes/release/RJBS/Dist-Zilla-6.000-TRIAL#L9-11),\n`Dist::Zilla` maps [`-V` to `verbose`](https://github.com/rjbs/Dist-Zilla/commit/98f9fb8b60cc645ffd401d08f3014675166ad32c#diff-99ae7353049f6c64733828dfcfe4ffdfR16).\n\nTo work around this problem on `Dist::Zilla 6.0` or later, you need to either not use short-hands for roles,\n\n    # dzil dumpwith -VersionProvider\n    dzil dumpwith Dist::Zilla::Role::VersionProvider\n\nOr place all the role names (and only role names) after a `--`\n\n    dzil dumpwith --color=... -- -VersionProvider -OtherRole --color-ThisIsAlsoARoleBTWSoDontDoThis\n\nAny suggestions welcome for how I can detect this problem case happening and report it,\nbut the data appears now outside of a scope I can probe.\n\n# AUTHOR\n\nKent Fredric \u003ckentnl@cpan.org\u003e\n\n# COPYRIGHT AND LICENSE\n\nThis software is copyright (c) 2017 by Kent Fredric \u003ckentfredric@gmail.com\u003e.\n\nThis is free software; you can redistribute it and/or modify it under\nthe same terms as the Perl 5 programming language system itself.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkentnl%2Fdist-zilla-app-command-dumpwith","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkentnl%2Fdist-zilla-app-command-dumpwith","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkentnl%2Fdist-zilla-app-command-dumpwith/lists"}