generated from asdf-vm/asdf-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commit-id:90b2fedb
- Loading branch information
Showing
1 changed file
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
# asdf-cairo-coverage | ||
|
||
[cairo-coverage] plugin for the [asdf] version manager. | ||
|
||
## Install | ||
|
||
This plugin needs `bash`, `curl`, `tar` and other generic POSIX utilities. | ||
Everything should be included by default on your system. | ||
|
||
```shell | ||
asdf plugin add cairo-coverage | ||
``` | ||
|
||
or | ||
|
||
```shell | ||
asdf plugin add cairo-coverage https://github.com/software-mansion/asdf-cairo-coverage.git | ||
``` | ||
|
||
## Use | ||
|
||
Show all installable versions: | ||
|
||
```shell | ||
asdf list-all cairo-coverage | ||
``` | ||
|
||
Install latest version: | ||
|
||
```shell | ||
asdf install cairo-coverage latest | ||
``` | ||
|
||
Install specific version: | ||
|
||
```shell | ||
asdf install cairo-coverage 0.2.0 | ||
``` | ||
|
||
Set a version globally (in your `~/.tool-versions` file): | ||
|
||
```shell | ||
asdf global cairo-coverage latest | ||
``` | ||
|
||
Now cairo-coverage commands are available: | ||
|
||
```shell | ||
cairo-coverage --version | ||
``` | ||
|
||
Check [asdf](https://github.com/asdf-vm/asdf) readme for more instructions on how to install & manage versions. | ||
|
||
[asdf]: https://asdf-vm.com | ||
|
||
[cairo-coverage]: https://github.com/software-mansion/cairo-coverage |