lapidarius 3.1.0 → 3.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +9 -11
- data/lib/lapidarius/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b287b982599610360235d68faee252b43c3a85ed
|
|
4
|
+
data.tar.gz: 642e97b9e537b22956ef3a1dc7d9e8380f620e47
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b862c591d760882556492573d375f7a990b232ba273b68b86035ec373fe88923a4b303da39d5d095b84bf5215566b07570083c31ea5f4d3fed381ae6a53ff42a
|
|
7
|
+
data.tar.gz: dc39cc1b1ba7b3fa933ab01b38319251f7505c3a3080ae326795ae73304e66bc11c6348b2ad6408c4317ff8084174153b0157403ca534059a334329f81647002
|
data/README.md
CHANGED
|
@@ -4,12 +4,12 @@
|
|
|
4
4
|
* [Alternatives](#alternatives)
|
|
5
5
|
* [gem dep](#gem-dep)
|
|
6
6
|
* [bundle viz](#bundle-viz)
|
|
7
|
+
* [Warning](#warning)
|
|
7
8
|
* [Usage](#usage)
|
|
8
|
-
* [Warning](#warning)
|
|
9
|
-
* [Output](#output)
|
|
10
9
|
|
|
11
10
|
## Scope
|
|
12
|
-
This gem is aimed to
|
|
11
|
+
This gem is aimed to recursively collect the `runtime dependencies` footprint of the specified gem.
|
|
12
|
+
The output of the library mimics the `tree` shell utility, highlighting the nested dependencies via ASCII characters.
|
|
13
13
|
|
|
14
14
|
### Alternatives
|
|
15
15
|
Some alternatives exists:
|
|
@@ -21,16 +21,14 @@ The standard *gem dep* command just unearth one level of dependencies.
|
|
|
21
21
|
The *bundle viz* command relies on the Gemfile and the [graphviz](http://www.graphviz.org/) library to generate a visual representation of the gem inter-dependencies.
|
|
22
22
|
While it is great to visualize inter-dependencies, i have hard times figuring out gem's runtime footprint.
|
|
23
23
|
|
|
24
|
-
##
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
### Warning
|
|
28
|
-
Consider only the gems installed on your system are scanned.
|
|
24
|
+
## Warning
|
|
25
|
+
Consider only the gems installed on your system are scanned by the library.
|
|
29
26
|
No remote fetching is performed.
|
|
30
27
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
28
|
+
## Usage
|
|
29
|
+
This library invokes the `Gem::Commands::DependencyCommand` class recursively to collect all the levels of dependency.
|
|
30
|
+
Identical dependencies are counted just once:
|
|
31
|
+
|
|
34
32
|
```
|
|
35
33
|
$ lapidarius --gem=sinatra
|
|
36
34
|
sinatra (2.0.0)
|
data/lib/lapidarius/version.rb
CHANGED