{"id":15168695,"url":"https://github.com/kalkin/ddt","last_synced_at":"2025-10-01T02:31:03.631Z","repository":{"id":62715573,"uuid":"79037138","full_name":"kalkin/Ddt","owner":"kalkin","description":"Distribution Development Tool for the Perl 6 Programming Language ","archived":true,"fork":false,"pushed_at":"2022-11-05T01:16:40.000Z","size":245,"stargazers_count":10,"open_issues_count":8,"forks_count":4,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-09-30T20:32:33.726Z","etag":null,"topics":["authoring-tool","command-line","developer-tools","development-tools","module-development","perl6","testing","utility"],"latest_commit_sha":null,"homepage":"","language":"Raku","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"artistic-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kalkin.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-01-15T14:19:30.000Z","updated_at":"2024-08-10T08:11:19.000Z","dependencies_parsed_at":"2022-11-05T00:45:32.762Z","dependency_job_id":null,"html_url":"https://github.com/kalkin/Ddt","commit_stats":null,"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kalkin%2FDdt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kalkin%2FDdt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kalkin%2FDdt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kalkin%2FDdt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kalkin","download_url":"https://codeload.github.com/kalkin/Ddt/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":234812362,"owners_count":18890667,"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":["authoring-tool","command-line","developer-tools","development-tools","module-development","perl6","testing","utility"],"created_at":"2024-09-27T06:40:43.290Z","updated_at":"2025-10-01T02:30:58.308Z","avatar_url":"https://github.com/kalkin.png","language":"Raku","funding_links":[],"categories":[],"sub_categories":[],"readme":"NAME\n====\n\nDdt - Distribution Development Tool\n\nSYNOPSIS\n========\n\n\n\n    $ ddt --license-name=LGPL new Foo::Bar # create Foo-Bar distribution\n    $ cd Foo-Bar\n    $ ddt build        # build the distribution and re-generate\n                       # README.md \u0026 META6.json\n    $ ddt -C test      # Run tests when files change\n\nDESCRIPTION\n===========\n\n\n\n**Ddt** is an authoring and distribution development tool for Raku. It provides scaffolding for generating new distributions, packages, modules, grammers, classes and roles.\n\nWARNING\n=======\n\nThis project is a technology preview. It may change at any point. The only API which can be considered stable up to the `v1.0` is the command line interface.\n\nUSAGE\n=====\n\n\n\n    ddt [--license-name=«NAME»] new \u003cmodule\u003e -- Create new module\n    ddt build                                -- Build the distribution and\n                                                update README.md\n    ddt [-C|--continues] test [\u003ctests\u003e …]    -- Run distribution tests\n    ddt release                              -- Make release\n    ddt hack \u003cidentity\u003e [\u003cdir\u003e]              -- Checkout a Distribution and\n                                                start hacking on it\n    ddt generate class \u003cname\u003e                -- Generate a class\n    ddt generate role \u003cname\u003e                 -- Generate a role\n    ddt generate package \u003cname\u003e              -- Generate a package\n    ddt generate grammar \u003cname\u003e              -- Generate a grammar\n    ddt generate module \u003cname\u003e               -- Generate a module\n    ddt generate test \u003cname\u003e [\u003cdescription\u003e] -- Generate stub test file\n    ddt [-v] deps distri                     -- Show all the modules used\n    ddt [-u|--update] deps                   -- Update META6.json dependencies\n    ddt watch [\u003ccmd\u003e…]                       -- Watch lib/, bin/ \u0026 t/ for\n                                                changes respecting .gitignore\n                                                and execute given cmd\n\nINSTALLATION\n============\n\n    # with zef\n    \u003e zef install Ddt\n\nDifferences to Mi6\n==================\n\n  * Support for different licenses via `License::Software`\n\n  * META6 is generated using `META6`\n\n  * Meta test\n\n  * Use prove for tests\n\n  * Run tests on changes\n\n  * Extended .gitignore\n\n  * Support for different licenses\n\n  * Support for Distributions with a hyphen in the name\n\nFAQ\n===\n\n  * How can I manage depends, build-depends, test-depends?\n\nUse `ddt -u deps`\n\n  * Where is the spec of META6.json?\n\nThe documentation site describes the current practices pretty well at [https://docs.raku.org/language/modules#Distributing_modules](https://docs.raku.org/language/modules#Distributing_modules). The original design document of META6.json is available at [http://design.perl6.org/S22.html](http://design.perl6.org/S22.html).\n\n  * How do I remove the travis badge?\n\nRemove .travis.yml\n\nSEE ALSO\n========\n\n  * [https://github.com/skaji/mi6](https://github.com/skaji/mi6)\n\n  * [https://github.com/tokuhirom/Minilla](https://github.com/tokuhirom/Minilla)\n\n  * [https://github.com/rjbs/Dist-Zilla](https://github.com/rjbs/Dist-Zilla)\n\nAUTHOR\n======\n\n  * Bahtiar `kalkin-` Gadimov \u003cbahtiar@gadimov.de\u003e\n\n  * Shoichi Kaji \u003cskaji@cpan.org\u003e\n\nCOPYRIGHT AND LICENSE\n=====================\n\n  * Copyright © 2015 Shoichi Kaji\n\n  * Copyright © 2016-2017 Bahtiar `kalkin-` Gadimov\n\nThis library is free software; you can redistribute it and/or modify it under the Artistic License 2.0.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkalkin%2Fddt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkalkin%2Fddt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkalkin%2Fddt/lists"}