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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +9 -11
  3. data/lib/lapidarius/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 047e73cb5b2d4a23b395e2780448ba0f60bc322d
4
- data.tar.gz: 4309e419d45fbb06bb9b8db9c20c6ff6b55480af
3
+ metadata.gz: b287b982599610360235d68faee252b43c3a85ed
4
+ data.tar.gz: 642e97b9e537b22956ef3a1dc7d9e8380f620e47
5
5
  SHA512:
6
- metadata.gz: 118527bfce62dba8aaa7a7bd4f905eb2bc1d460aaa82f116252f6c18a7c6f257e51a47c9343cba978aa0698bb3021a86b3e61539b468325da219cdc5a00d8611
7
- data.tar.gz: 458a14c7713453b520691ae574f825b372fca8a3b3efc15508b9fd2991f8b200e1302b11a0c7dbef50342d91fdfe879042fd8e75580371b79556e02c9b25dafc
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 list recursively the **runtime dependencies** footprint of the specified gem.
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
- ## Usage
25
- The library relies on the *Gem::Commands::DependencyCommand* class (the one invoked by the *gem dep* command line), invoking it recursively to deeply fetch dependencies.
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
- ### Output
32
- The output of the library mimics the `tree` shell utility that lists file system nested entries.
33
- Although all of the nested runtime dependencies are included in the output, just the unique ones are counted:
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)
@@ -1,3 +1,3 @@
1
1
  module Lapidarius
2
- VERSION = "3.1.0"
2
+ VERSION = "3.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lapidarius
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.0
4
+ version: 3.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - costajob