mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-10 20:42:23 +03:00
24 lines
357 B
Markdown
24 lines
357 B
Markdown
|
# shards
|
||
|
|
||
|
> Dependency management tool for the Crystal language.
|
||
|
|
||
|
- Create a skeleton shard.yml file:
|
||
|
|
||
|
`shards init`
|
||
|
|
||
|
- Install dependencies from a shard.yml file:
|
||
|
|
||
|
`shards install`
|
||
|
|
||
|
- Update all dependencies:
|
||
|
|
||
|
`shards update`
|
||
|
|
||
|
- List all installed dependencies:
|
||
|
|
||
|
`shards list`
|
||
|
|
||
|
- List version of dependency:
|
||
|
|
||
|
`shards version {{path/to/dependency_folder}}`
|