ex_aequo 0.2.5 → 0.2.6

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
  SHA256:
3
- metadata.gz: c6b01e509cb74f6f5082dab85a74484caab9cc5cf7b36c93fce837f262dc947f
4
- data.tar.gz: 6e24bdda3f88cdb57c82796b300139e33e7a0fa41db8443e7fb1644d8ceef8c7
3
+ metadata.gz: 416ef0ad9abb2576e3b6d4c34bb1f5c47bab9dd59c7bdf42d165622b05e4e174
4
+ data.tar.gz: 19bce52876f9f01a9e2f34cd21449e6ab680a7a8e26931e8f35d838d53315d7e
5
5
  SHA512:
6
- metadata.gz: 75f600153b4b90bc5851259db66741785a388bde1c25975cd73c294c19e4b7fdbcfab2061a10b88a090a83ba2bdf3829ec8a80cc62c3504acf8ea56854eb0b6a
7
- data.tar.gz: 036fd48fcfbbc5cc18c2749f0024cb76e4a2ff597b384b47269066c723bcfe5b3e20a07699f3e67e68265be88845fc6ebd358e92b0a60ac67b886972bb939466
6
+ metadata.gz: bd91e16bf24be7bedab872cd1c93fc5d3c218f54e1ab801bb2d1ccb347cfba60805177837f028d38f69c0fcc997c29fbd79481b73a436dcde11551fa17580533
7
+ data.tar.gz: cd03ad0e7892f461b0149c061160b95d1d8dfaa13c59d4833c200854271881a089cc8bc802a1a78c08d5632e50f16cf595701275da664ab1663cc8e7f86b8ff6
@@ -6,8 +6,9 @@ module ExAequo
6
6
 
7
7
  module Text extend self
8
8
  Specials = {
9
- reset: ExAequo::Color.reset,
10
- eol: "\n"
9
+ bold: ExAequo::Color::Ansi.ansi(:white, bold: true),
10
+ eol: "\n",
11
+ reset: ExAequo::Color.reset
11
12
  }
12
13
 
13
14
  def put_col(*segments, to: $stdout)
@@ -39,7 +40,7 @@ module ExAequo
39
40
  def _colorize(color)
40
41
  case ExAequo::Color::Ansi::AnsiColorEscape[color]
41
42
  when nil
42
- Special.fetch(color) { raise ArgumentError, "#{color} not yet implemented" }
43
+ Specials.fetch(color) { raise ArgumentError, "#{color} not yet implemented" }
43
44
  else
44
45
  ExAequo::Color::Ansi.ansi(color)
45
46
  end
@@ -2,7 +2,7 @@
2
2
 
3
3
  module ExAequo
4
4
  module Version
5
- VERSION = '0.2.5'
5
+ VERSION = '0.2.6'
6
6
  end
7
7
  end
8
8
  # SPDX-License-Identifier: Apache-2.0
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ex_aequo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.5
4
+ version: 0.2.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert Dober