README.md in lapidarius-4.2.1 vs README.md in lapidarius-4.3.0
- old
+ new
@@ -6,10 +6,11 @@
* [bundle viz](#bundle-viz)
* [Installation](#installation)
* [Usage](#usage)
* [Version](#version)
* [Remote](#remote)
+ * [Quiet](#quiet)
## Scope
This gem is aimed to recursively collect the `runtime dependencies` footprint of the specified gem.
The output of the library mimics the `tree` shell utility, highlighting the nested dependencies via ASCII characters.
@@ -71,6 +72,14 @@
lapidarius roda -v 3.3.0 -r
roda (3.3.0)
└── rack (>= 0)
1 runtime, 10 development
+```
+
+### Quiet
+Some gems has several interdependencies that results in a multitude of tree branches.
+In case you just dare to count dependencies without the visual noise, you can pass the `-q` option:
+```shell
+lapidarius rails -v 5.1.4 -r -q
+37 runtime, 49 development
```