{"id":13769782,"url":"https://github.com/pharo-contributions/DeepTraverser","last_synced_at":"2025-05-11T02:33:33.204Z","repository":{"id":93121347,"uuid":"157535407","full_name":"pharo-contributions/DeepTraverser","owner":"pharo-contributions","description":"DeepTraverser offers a library for traversing object graphs. It is inspired from an original implementation by Mariano Martinez Peck.","archived":false,"fork":false,"pushed_at":"2018-11-29T16:37:18.000Z","size":78,"stargazers_count":8,"open_issues_count":0,"forks_count":3,"subscribers_count":7,"default_branch":"development","last_synced_at":"2024-04-22T03:52:49.557Z","etag":null,"topics":["deep-traverser","graph","pharo","smalltalk","traversing"],"latest_commit_sha":null,"homepage":null,"language":"Smalltalk","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pharo-contributions.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2018-11-14T10:58:47.000Z","updated_at":"2019-02-12T14:19:19.000Z","dependencies_parsed_at":"2023-06-05T00:15:10.402Z","dependency_job_id":null,"html_url":"https://github.com/pharo-contributions/DeepTraverser","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pharo-contributions%2FDeepTraverser","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pharo-contributions%2FDeepTraverser/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pharo-contributions%2FDeepTraverser/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pharo-contributions%2FDeepTraverser/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pharo-contributions","download_url":"https://codeload.github.com/pharo-contributions/DeepTraverser/tar.gz/refs/heads/development","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":213832275,"owners_count":15644973,"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":["deep-traverser","graph","pharo","smalltalk","traversing"],"created_at":"2024-08-03T17:00:31.472Z","updated_at":"2024-08-03T17:02:32.714Z","avatar_url":"https://github.com/pharo-contributions.png","language":"Smalltalk","funding_links":[],"categories":["Algorithms"],"sub_categories":[],"readme":"# DeepTraverser\n\nDeepTraverser offers a library for traversing object graphs. It is inspired from an original implementation by Mariano Martinez Peck.\n\n## Version management \n\nThis project use semantic versionning to define the releases. This mean that each stable release of the project will get associate a version number of the form `vX.Y.Z`. \n\n- **X** define the major version number\n- **Y** define the minor version number \n- **Z** define the patch version number\n\nWhen a release contains only bug fixes, the patch number increase. When the release contains new features backward compatibles, the minor version increase. When the release contains breaking changes, the major version increase. \n\nThus, it should be safe to depend on a fixed major version and moving minor version of this project.\n\n## Install DeepTraverser \n\nTo install DeepTraverser on your Pharo image you can just execute the following script:\n\n```Smalltalk\n    Metacello new\n    \tgithubUser: 'pharo-contributions' project: 'DeepTraverser' commitish: 'master' path: 'src';\n    \tbaseline: 'DeepTraverser';\n    \tload\n```\n\nTo add DeepTraverser to your baseline just add this:\n\n```Smalltalk\n    spec\n    \tbaseline: 'DeepTraverser'\n    \twith: [ spec repository: 'github://pharo-contributions/DeepTraverser:master/src' ]\n```\n\nNote that you can replace the #master by another branch as #development or a tag as #v1.0.0, #v1.? or #v1.2.? .\n\n## Examples\n\n```Smalltalk\nNumber\n    deep: #subclasses \n    do: [:each | Transcript show: each; cr].\n\nNumber deepCollect: #subclasses.\n\nNumber\n    deep: #subclasses \n    collect: #name.\n\nNumber \n    deep: #subclasses \n    do: [:each | Transcript show: each; cr]\n    relationDo: [ :from :to | Transcript show: from; show: ' \u003c-- '; show: to; cr ].\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpharo-contributions%2FDeepTraverser","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpharo-contributions%2FDeepTraverser","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpharo-contributions%2FDeepTraverser/lists"}