mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00

This commit fixes every instance in which the word "folder" is incorrectly used instead of "directory".
23 lines
360 B
Markdown
23 lines
360 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_directory}}`
|