{"id":19514332,"url":"https://github.com/whoissethdaniel/plenv-module-inspector","last_synced_at":"2025-09-11T17:14:43.767Z","repository":{"id":124104196,"uuid":"161847399","full_name":"WhoIsSethDaniel/plenv-module-inspector","owner":"WhoIsSethDaniel","description":"plenv plugin for getting and inspecting details of the distributions and modules installed.","archived":false,"fork":false,"pushed_at":"2019-03-07T22:02:17.000Z","size":18,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-01-08T12:16:40.446Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Perl","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/WhoIsSethDaniel.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-12-14T22:33:43.000Z","updated_at":"2019-03-07T22:02:18.000Z","dependencies_parsed_at":null,"dependency_job_id":"82829fb3-7112-4ec3-a97f-79bfd531454e","html_url":"https://github.com/WhoIsSethDaniel/plenv-module-inspector","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WhoIsSethDaniel%2Fplenv-module-inspector","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WhoIsSethDaniel%2Fplenv-module-inspector/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WhoIsSethDaniel%2Fplenv-module-inspector/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WhoIsSethDaniel%2Fplenv-module-inspector/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/WhoIsSethDaniel","download_url":"https://codeload.github.com/WhoIsSethDaniel/plenv-module-inspector/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240762531,"owners_count":19853499,"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":[],"created_at":"2024-11-10T23:35:56.360Z","updated_at":"2025-02-25T23:26:23.932Z","avatar_url":"https://github.com/WhoIsSethDaniel.png","language":"Perl","funding_links":[],"categories":[],"sub_categories":[],"readme":"# NAME\n\nplenv-module-inspector - subcommands for plenv that provide inspection of modules and their details\n\n# SYNOPSIS\n\n      # list all core modules and their versions for the current Perl\n      plenv list-core-modules\n\n      # list all CPAN installed distributions and their versions for the \n      # current Perl\n      plenv list-dists\n\n      # list all CPAN installed modules and their versions\n      plenv list-cpan-modules\n\n      # list all CPAN installed modules, their versions, their distribution,\n      # and the relative path to the file\n      plenv list-cpan-modules -a\n\n      # list all files installed by the given distribution/s. (by default\n      # the listed files are relative to the current Perl's directory.)\n      plenv list-files Moo \n\n      # list absolute paths to files installed by the given distribution/s\n      plenv list-files -f Moo\n\n      # upgrade all non-core dists for the currently selected Perl\n      plenv upgrade-all-dists\n\n      # upgrade all dists (including core); run tests before installing\n      plenv upgrade-all-dists -c -t \n\n      # list all available Perl releases\n      plenv list-perl-releases\n\n      # list all available Perl releases, but suppress the update/install\n      # of the CPAN::Perl::Releases module\n      plenv list-perl-releases -n\n\n      # list all the (possible) names for the distribution associated with\n      # the given module\n      plenv find-dist LWP\n\n# DESCRIPTION\n\nAdds several new subcommands to plenv that help with inspecting details of\nthe modules that are installed in your current plenv environment.\n\n# COMMANDS\n\n### plenv list-core-modules\n\nList all the core modules for the currently selected Perl as well the version\nof each module.\n\nThis is roughly the equivalent to `corelist -v $(plenv version-name)`.\n\n### plenv list-dists\n\nSimilar to the `list-modules` subcommand, but lists all the CPAN installed\ndistributions for the currently selected Perl as well as the version of each \ndistribution.\n\n### plenv list-cpan-modules\n\nList all CPAN installed modules plus their versions.  \n\n### plenv list-files\n\nList all installed files for the given list of distributions.  \n\n### plenv upgrade-all-dists\n\nUpgrade all distributions for the currently selected Perl.\n\n### plenv list-perl-releases\n\nList all available Perl releases.\n\n### plenv find-dist\n\nFind the distribution name for a given module.\n\n# INSTALLATION\n\nFirst, install [plenv](https://github.com/tokuhirom/plenv) if you have not \nalready done so.\n\nSecond, checkout plenv-module-inspector into your `~/.plenv/plugins`.\n\n  ```sh\n  $ git clone https://github.com/whoissethdaniel/plenv-module-inspector ~/.plenv/plugins/module-inspector\n  ```\n\nThat's it!\n\n# BUG REPORTING\n\nUse Github issues: https://github.com/WhoIsSethDaniel/plenv-module-inspector/issues\n\n# AUTHOR\n\nSeth Daniel \u003cperl @ sethdaniel.org\u003e\n\n# SEE ALSO\n\n[plenv](https://github.com/tokuhirom/plenv)\n\n[ExtUtils::Installed](https://metacpan.org/pod/ExtUtils::Installed)\n\n# LICENSE\n\nNone. Use it as you see fit.  \n\nIf you change it please consider submitting a patch.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwhoissethdaniel%2Fplenv-module-inspector","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwhoissethdaniel%2Fplenv-module-inspector","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwhoissethdaniel%2Fplenv-module-inspector/lists"}