├── .github ├── crystal-spec.json ├── crystal.json ├── generate_release_yml.py ├── renovate.json ├── test │ └── crystal-libs_spec.cr └── workflows │ ├── check-configs.yml │ ├── deploy-docs.yml │ ├── main.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── .tools ├── cmd ├── hooks │ └── pre-commit ├── mock-vcvars.txt ├── release.sh ├── sudo └── upgrade.sh ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── action.yml ├── docs ├── assets │ ├── script.js │ └── style.css ├── configurator.md ├── gen_pages.py ├── index.md └── mkdocs.yml ├── eslint.config.js ├── hatch.toml ├── index.js ├── package.json ├── requirements └── requirements-docs.txt └── test-project ├── .gitignore ├── shard.yml └── test.cr /.github/crystal-spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-lang/install-crystal/HEAD/.github/crystal-spec.json -------------------------------------------------------------------------------- /.github/crystal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-lang/install-crystal/HEAD/.github/crystal.json -------------------------------------------------------------------------------- /.github/generate_release_yml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-lang/install-crystal/HEAD/.github/generate_release_yml.py -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-lang/install-crystal/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/test/crystal-libs_spec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-lang/install-crystal/HEAD/.github/test/crystal-libs_spec.cr -------------------------------------------------------------------------------- /.github/workflows/check-configs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-lang/install-crystal/HEAD/.github/workflows/check-configs.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-lang/install-crystal/HEAD/.github/workflows/deploy-docs.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-lang/install-crystal/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-lang/install-crystal/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-lang/install-crystal/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-lang/install-crystal/HEAD/.gitignore -------------------------------------------------------------------------------- /.tools/cmd: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cat "$(dirname "$0")/mock-vcvars.txt" 4 | -------------------------------------------------------------------------------- /.tools/hooks/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | npm test 3 | -------------------------------------------------------------------------------- /.tools/mock-vcvars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-lang/install-crystal/HEAD/.tools/mock-vcvars.txt -------------------------------------------------------------------------------- /.tools/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-lang/install-crystal/HEAD/.tools/release.sh -------------------------------------------------------------------------------- /.tools/sudo: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | sleep 10 4 | -------------------------------------------------------------------------------- /.tools/upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-lang/install-crystal/HEAD/.tools/upgrade.sh -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-lang/install-crystal/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-lang/install-crystal/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-lang/install-crystal/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-lang/install-crystal/HEAD/action.yml -------------------------------------------------------------------------------- /docs/assets/script.js: -------------------------------------------------------------------------------- 1 | hljs.initHighlighting(); 2 | -------------------------------------------------------------------------------- /docs/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-lang/install-crystal/HEAD/docs/assets/style.css -------------------------------------------------------------------------------- /docs/configurator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-lang/install-crystal/HEAD/docs/configurator.md -------------------------------------------------------------------------------- /docs/gen_pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-lang/install-crystal/HEAD/docs/gen_pages.py -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-lang/install-crystal/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-lang/install-crystal/HEAD/docs/mkdocs.yml -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-lang/install-crystal/HEAD/eslint.config.js -------------------------------------------------------------------------------- /hatch.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-lang/install-crystal/HEAD/hatch.toml -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-lang/install-crystal/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-lang/install-crystal/HEAD/package.json -------------------------------------------------------------------------------- /requirements/requirements-docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-lang/install-crystal/HEAD/requirements/requirements-docs.txt -------------------------------------------------------------------------------- /test-project/.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | lib/ 3 | shard.lock 4 | -------------------------------------------------------------------------------- /test-project/shard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-lang/install-crystal/HEAD/test-project/shard.yml -------------------------------------------------------------------------------- /test-project/test.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-lang/install-crystal/HEAD/test-project/test.cr --------------------------------------------------------------------------------