lapidarius 2.1.1 → 2.1.2
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 +4 -9
- data/lib/lapidarius/cli.rb +1 -1
- data/lib/lapidarius/ui.rb +3 -0
- 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: 7710821237e08e7528d2d68e033af6d44c20e33d
|
|
4
|
+
data.tar.gz: 5c349cf60b82a03b47531a7d7695adffb4abec9e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 469186864c12e739586fece5372397f816b6946f4f6872448f39c085da92601ff2a256715f1768877a355fcee45b5069c9c8c386afdc40a4b4b17f88f2a94e69
|
|
7
|
+
data.tar.gz: 9759cf03c8d0b1d46fdd73c7e4a173dbdda758682e92b96e222b6f48241edc7d19c437e1523efbe926c3b729129258c3437aab526f8a65a454c270fd3e3ef809
|
data/README.md
CHANGED
|
@@ -33,29 +33,24 @@ The command outcome includes all of the unique (by name) nested runtime dependen
|
|
|
33
33
|
```
|
|
34
34
|
$ lapidarius --gem=grape
|
|
35
35
|
|
|
36
|
-
grape (0.
|
|
36
|
+
grape (1.0.1) 16
|
|
37
37
|
------------------------------
|
|
38
38
|
activesupport (>= 0)
|
|
39
39
|
builder (>= 0)
|
|
40
|
-
|
|
41
|
-
multi_json (>= 1.3.2)
|
|
42
|
-
multi_xml (>= 0.5.2)
|
|
43
|
-
mustermann19 (~> 0.4.3)
|
|
40
|
+
mustermann-grape (~> 1.0.0)
|
|
44
41
|
rack (>= 1.3.0)
|
|
45
42
|
rack-accept (>= 0)
|
|
46
43
|
virtus (>= 1.0.0)
|
|
47
|
-
concurrent-ruby (>= 1.0.2, ~> 1.0)
|
|
48
44
|
i18n (~> 0.7)
|
|
49
45
|
minitest (~> 5.1)
|
|
46
|
+
thread_safe (>= 0.3.4, ~> 0.3)
|
|
50
47
|
tzinfo (~> 1.1)
|
|
51
|
-
|
|
52
|
-
enumerable-lazy (>= 0)
|
|
48
|
+
mustermann (~> 1.0.0)
|
|
53
49
|
axiom-types (~> 0.1)
|
|
54
50
|
coercible (~> 1.0)
|
|
55
51
|
descendants_tracker (>= 0.0.3, ~> 0.0)
|
|
56
52
|
equalizer (>= 0.0.9, ~> 0.0)
|
|
57
53
|
ice_nine (~> 0.11.0)
|
|
58
|
-
|
|
59
54
|
```
|
|
60
55
|
|
|
61
56
|
### Recursive print
|
data/lib/lapidarius/cli.rb
CHANGED
|
@@ -17,7 +17,7 @@ module Lapidarius
|
|
|
17
17
|
obj = Lapidarius::Cutter.new(@gem, cmd_klass).call
|
|
18
18
|
Lapidarius::Renderer::new(obj, @recursive).call(@io)
|
|
19
19
|
rescue Gem::NotInstalledError => e
|
|
20
|
-
@io.puts e.message.sub("specified", @gem)
|
|
20
|
+
@io.puts e.message.sub("specified", "\e[1m#{@gem}\e[0m")
|
|
21
21
|
end
|
|
22
22
|
|
|
23
23
|
private def parser
|
data/lib/lapidarius/ui.rb
CHANGED
data/lib/lapidarius/version.rb
CHANGED