{"id":16302210,"url":"https://github.com/vrurg/raku-oo-plugin","last_synced_at":"2026-01-21T11:33:42.043Z","repository":{"id":125893582,"uuid":"162064468","full_name":"vrurg/raku-OO-Plugin","owner":"vrurg","description":"Perl6 powerful plugins support framework","archived":false,"fork":false,"pushed_at":"2021-10-08T23:39:30.000Z","size":253,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-10T05:54:49.551Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Perl 6","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/vrurg.png","metadata":{"files":{"readme":"README.md","changelog":"ChangeLog.md","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-17T02:39:00.000Z","updated_at":"2021-10-07T19:39:55.000Z","dependencies_parsed_at":null,"dependency_job_id":"2c4f4755-7fff-43e0-93a9-b5730396ce44","html_url":"https://github.com/vrurg/raku-OO-Plugin","commit_stats":null,"previous_names":[],"tags_count":17,"template":false,"template_full_name":null,"purl":"pkg:github/vrurg/raku-OO-Plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vrurg%2Fraku-OO-Plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vrurg%2Fraku-OO-Plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vrurg%2Fraku-OO-Plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vrurg%2Fraku-OO-Plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vrurg","download_url":"https://codeload.github.com/vrurg/raku-OO-Plugin/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vrurg%2Fraku-OO-Plugin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28632771,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-21T04:47:28.174Z","status":"ssl_error","status_checked_at":"2026-01-21T04:47:22.943Z","response_time":86,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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-10-10T20:56:45.598Z","updated_at":"2026-01-21T11:33:42.025Z","avatar_url":"https://github.com/vrurg.png","language":"Perl 6","funding_links":[],"categories":[],"sub_categories":[],"readme":"NAME\n====\n\nOO::Plugin – framework for working with OO plugins.\n\nSYNOPSIS\n========\n\n    use OO::Plugin;\n    use OO::Plugin::Manager;\n\n    class Foo is pluggable {\n        has $.attr;\n        method bar is pluggable {\n            return 42;\n        }\n    }\n\n    plugin Fubar {\n        method a-bar ( $msg ) is plug-around( Foo =\u003e 'bar' ) {\n            $msg.set-rc( pi ); # Will override \u0026Foo::bar return value and prevent its execution.\n        }\n    }\n\n    my $manager = OO::Plugin::Manager.new.initialize;\n    my $instance = $manager.create( Foo, attr =\u003e 'some value' );\n    say $instance.bar;  # 3.141592653589793\n\nDESCRIPTION\n===========\n\nWith this framework any application can have highly flexible and extensible plugin subsystem with which plugins would be capable of:\n\n  * method overriding\n\n  * class overriding (inheriting)\n\n  * callbacks\n\n  * asynchronous event handling\n\nThe framework also supports:\n\n  * automatic loading of plugins with a predefined namespace\n\n  * managing plugin ordering and dependencies\n\nNot yet supported but planned for the future is plugin compatibility management.\n\nRead more in [`OO::Plugin::Manual`](Plugin/Manual.md).\n\nEXPORTS\n=======\n\nRoutines\n--------\n\n  * `plugin-meta [key =` value, ...]\u003e\n\n    Registers plugin meta. Can only be used within plugin body block.\n\n  * `plug-last [return-value]`\n\n    Cancels current execution chain and optionally sets return value.\n\n  * `plug-redo`\n\n    Restarts current execution chain.\n\nClasses\n-------\n\n`PluginMessage` and \u003cMethodHandlerMsg\u003e are re-exported from [`OO::Plugin::Class`](Plugin/Class.md).\n\nSEE ALSO\n========\n\n[`OO::Plugin::Manual`](Plugin/Manual.md), [`OO::Plugin::Manager`](Plugin/Manager.md), [`OO::Plugin::Class`](Plugin/Class.md) [`OO::Plugin::Registry`](Plugin/Registry.md)\n\n[ChangeLog](ChangeLog.md)\n\nAUTHOR\n======\n\nVadim Belman \u003cvrurg@cpan.org\u003e\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvrurg%2Fraku-oo-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvrurg%2Fraku-oo-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvrurg%2Fraku-oo-plugin/lists"}