colorize 1.0.1 → 1.0.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
  SHA256:
3
- metadata.gz: 2440a0c4dffad361b76dc139b086a986c0cb4eb04c510e37f39cb33f86aa6448
4
- data.tar.gz: c5c8b4df8f4a4fe62b6205205dad479e40e61d6134d38ff156dcd48cdadf7402
3
+ metadata.gz: 5fd14fe9398abe190f9220d78856881233442eebb449e17ef360d37071b27d02
4
+ data.tar.gz: c347bd5839c004ca73e57cc1af16bf9b54923d0f4676a06e89cf56d149fa3bbd
5
5
  SHA512:
6
- metadata.gz: 498e222fe9f170791b493d6367c613f7c7eeff98b14ca5726e7741fe783af2433683d79115bf6b74ff0ec956fbb2cf4ca900976dd406f451da795ebc0f778340
7
- data.tar.gz: d6b023053c3130ecab27e494c54fbd2da2b8f0756c26931a03b4c74d6f68285bbd61281e38c95c72467126835f4a0382e689705e1dcca94615f7d8450c1e6b07
6
+ metadata.gz: 2cd8c7d986dd434080bdf1c9ab14249f8f96f85a4a66ed1f84b241232cf2e4373576b04de434b3ae500d37a110be42320c8f4b1dc74bb273c851d816cb73cb52
7
+ data.tar.gz: d35c48011f472e3f214019024c95b9173db56a8928fa182de24167c138000ae08364fdcdf284ccc5dc80e2f450b5d3cf782c24ccc10d6b3ac33b01631776c8a2
data/CHANGELOG.md CHANGED
@@ -1,6 +1,12 @@
1
1
  # Changelog
2
2
 
3
- ## 1.0.0 / 2023-03-23
3
+ ## 1.0.2 / 2023-06-21
4
+ - check if color exists when extending class
5
+
6
+ ## 1.0.1 / 2023-06-19
7
+ - fix maching of colorized strings without readline characters
8
+
9
+ ## 1.0.0 / 2023-06-19
4
10
  - add more modes
5
11
  - add aliases
6
12
  - grey and gray default aliases
@@ -13,9 +19,9 @@
13
19
  - fix gemspec bug
14
20
 
15
21
  ## 0.8.0 / 2016-06-27
16
- - add ColorizedString class
17
- - update README file
18
- - add rubocop.yml and follow style
22
+ - add ColorizedString class
23
+ - update README file
24
+ - add rubocop.yml and follow style
19
25
  - add italic mode
20
26
  - remove interpreter warrnings
21
27
 
@@ -190,14 +190,18 @@ module Colorize
190
190
  # Check if color exists
191
191
  #
192
192
  def check_if_color_available!(color)
193
- color_codes[color] && fail(::Colorize::ColorAlreadyExist, "Colorize: color named :#{color} already exist!")
193
+ color_exist?(color) && fail(::Colorize::ColorAlreadyExist, "Colorize: color named :#{color} already exist!")
194
194
  end
195
195
 
196
196
  #
197
197
  # Check if color is missing
198
198
  #
199
199
  def check_if_color_exist!(color)
200
- color_codes[color] || fail(::Colorize::ColorDontExist, "Colorize: color :#{color} don't exist!")
200
+ color_exist?(color) || fail(::Colorize::ColorDontExist, "Colorize: color :#{color} don't exist!")
201
+ end
202
+
203
+ def color_exist?(color)
204
+ !color_codes[color].nil?
201
205
  end
202
206
  end
203
207
  end
@@ -4,5 +4,5 @@
4
4
  # Gem version
5
5
  #
6
6
  module Colorize
7
- VERSION = '1.0.1'
7
+ VERSION = '1.0.2'
8
8
  end
data/lib/colorize.rb CHANGED
@@ -15,6 +15,6 @@ class String
15
15
  color_methods
16
16
  modes_methods
17
17
 
18
- add_color_alias(:grey, :light_black)
19
- add_color_alias(:gray, :light_black)
18
+ add_color_alias(:grey, :light_black) unless color_exist?(:grey)
19
+ add_color_alias(:gray, :light_black) unless color_exist?(:gray)
20
20
  end
@@ -13,8 +13,8 @@ class ColorizedString < String
13
13
  color_methods
14
14
  modes_methods
15
15
 
16
- add_color_alias(:grey, :light_black)
17
- add_color_alias(:gray, :light_black)
16
+ add_color_alias(:grey, :light_black) unless color_exist?(:grey)
17
+ add_color_alias(:gray, :light_black) unless color_exist?(:gray)
18
18
 
19
19
  #
20
20
  # Shortcut to create ColorizedString with ColorizedString['test'].
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: colorize
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michał Kalbarczyk
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-06-19 00:00:00.000000000 Z
11
+ date: 2023-06-21 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Extends String class or add a ColorizedString with methods to set text
14
14
  color, background color and text effects.