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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 54e5989657ba33a14a9781330aff5c6cad0ea623
4
- data.tar.gz: fb0ddad64d5c741077481e4d4b5291c8f27fcb9d
3
+ metadata.gz: 7710821237e08e7528d2d68e033af6d44c20e33d
4
+ data.tar.gz: 5c349cf60b82a03b47531a7d7695adffb4abec9e
5
5
  SHA512:
6
- metadata.gz: d1668fb2ffdfca9224b2b617533f8374d8323184110d8630aea5e010ec5d92a730e78666e156dfcd066625cfb1673036e9c202c1d393dbbb780412ee0d936cbd
7
- data.tar.gz: 102b061c1686a38a7a40c37db06960341f17b658e4349a1c63d1e90b81da653c21b4a2651ea0891c0e324eeebd97136a03745e3e86933193cdd85cf6bc4dea80
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.17.0) 20
36
+ grape (1.0.1) 16
37
37
  ------------------------------
38
38
  activesupport (>= 0)
39
39
  builder (>= 0)
40
- hashie (>= 2.1.0)
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
- thread_safe (~> 0.1)
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
@@ -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
@@ -17,5 +17,8 @@ module Lapidarius
17
17
  def clear!
18
18
  @io.reopen("")
19
19
  end
20
+
21
+ # mock method invocked by Gem::UserInteraction module
22
+ def terminate_interaction(code = 0); end
20
23
  end
21
24
  end
@@ -1,3 +1,3 @@
1
1
  module Lapidarius
2
- VERSION = "2.1.1"
2
+ VERSION = "2.1.2"
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: 2.1.1
4
+ version: 2.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - costajob