{"id":49532619,"url":"https://github.com/exercism/moonscript","last_synced_at":"2026-05-02T08:35:19.362Z","repository":{"id":330336137,"uuid":"1122217360","full_name":"exercism/moonscript","owner":"exercism","description":"Exercism exercises in MoonScript.","archived":false,"fork":false,"pushed_at":"2026-04-25T16:17:14.000Z","size":588,"stargazers_count":1,"open_issues_count":4,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-25T18:20:01.942Z","etag":null,"topics":["exercism-track","maintained-autonomous"],"latest_commit_sha":null,"homepage":"https://exercism.org/tracks/moonscript","language":"MoonScript","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/exercism.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":["exercism"],"custom":["https://exercism.org/donate"]}},"created_at":"2025-12-24T09:50:29.000Z","updated_at":"2026-04-25T16:17:20.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/exercism/moonscript","commit_stats":null,"previous_names":["exercism/moonscript"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/exercism/moonscript","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exercism%2Fmoonscript","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exercism%2Fmoonscript/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exercism%2Fmoonscript/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exercism%2Fmoonscript/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/exercism","download_url":"https://codeload.github.com/exercism/moonscript/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exercism%2Fmoonscript/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32528454,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-02T01:12:54.858Z","status":"online","status_checked_at":"2026-05-02T02:00:05.923Z","response_time":132,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["exercism-track","maintained-autonomous"],"created_at":"2026-05-02T08:35:18.348Z","updated_at":"2026-05-02T08:35:19.357Z","avatar_url":"https://github.com/exercism.png","language":"MoonScript","funding_links":["https://github.com/sponsors/exercism","https://exercism.org/donate"],"categories":[],"sub_categories":[],"readme":"# Exercism MoonScript Track\n\n[![Configlet](https://github.com/exercism/moonscript/actions/workflows/configlet.yml/badge.svg)](https://github.com/exercism/moonscript/actions/workflows/configlet.yml) [![Test](https://github.com/exercism/moonscript/actions/workflows/test.yml/badge.svg)](https://github.com/exercism/moonscript/actions/workflows/test.yml)\n\nExercism exercises in MoonScript.\n\n## Testing\n\nTo test all exercises, run `./bin/verify-exercises`.\nThis command will iterate over all exercises and check to see if their exemplar/example implementation passes all the tests.\n\nTo test a single exercise, run `./bin/verify-exercises \u003cexercise-slug\u003e`.\n\n### Using Docker\n\nIf your track has a working [test runner](https://exercism.org/docs/building/tooling/test-runners), the `./bin/verify-exercises-in-docker` script can also be used to test all exercises.\nThis script pulls (_downloads_) the test runner's [Docker image](https://exercism.org/docs/building/tooling/test-runners/docker) and then uses Docker to run that image to test an exercise.\n\n```exercism/note\nThe main benefit of this approach is that it best mimics how exercises are tested in production (on the website).\nAnother benefit is that you don't have to install track-specific dependencies (e.g. an SDK) locally, you just need Docker installed.\n```\n\nTo test a single exercise, run `./bin/verify-exercises-in-docker \u003cexercise-slug\u003e`.\n\n### Linting\n\n[`configlet`](https://exercism.org/docs/building/configlet) is an Exercism-wide tool for working with tracks. You can download it by running:\n\n```shell\n$ ./bin/fetch-configlet\n```\n\nRun its [`lint` command](https://exercism.org/docs/building/configlet/lint) to verify if exercises have the required files and if config files are correct:\n\n```shell\n$ ./bin/configlet lint\n\nThe lint command is under development.\nPlease re-run this command regularly to see if your track passes the latest linting rules.\n\nBasic linting finished successfully:\n- config.json exists and is valid JSON\n- config.json has these valid fields:\n    language, slug, active, blurb, version, status, online_editor, key_features, tags\n- Every concept has the required .md files\n- Every concept has a valid links.json file\n- Every concept has a valid .meta/config.json file\n- Every concept exercise has the required .md files\n- Every concept exercise has a valid .meta/config.json file\n- Every practice exercise has the required .md files\n- Every practice exercise has a valid .meta/config.json file\n- Required track docs are present\n- Required shared exercise docs are present\n```\n\n## Adding exercises\n\nNew (practice) exercises can be added via:\n\n```shell\nbin/add-practice-exercise \u003cexercise-slug\u003e\n```\n\nOptionally, you can also specify the exercise's difficulty (via `-d`) and/or author's GitHub username (via `-a`):\n\n```shell\nbin/add-practice-exercise -a foobar -d 3 \u003cexercise-slug\u003e\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fexercism%2Fmoonscript","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fexercism%2Fmoonscript","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fexercism%2Fmoonscript/lists"}