From 457c9b767b258bd4c4c21ebac91d30c1ff94e310 Mon Sep 17 00:00:00 2001 From: Aaron Tan Date: Wed, 3 Oct 2018 19:55:28 +0900 Subject: [PATCH] shards: add page (#2372) --- pages/common/shards.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 pages/common/shards.md diff --git a/pages/common/shards.md b/pages/common/shards.md new file mode 100644 index 0000000000..f6df8a8d8e --- /dev/null +++ b/pages/common/shards.md @@ -0,0 +1,23 @@ +# 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}}`