redgreenblue 0.16.0 → 0.17.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f836ad38758f98dc7f9d677e9bf97dcfd878a09e994622b16b4854d1bff01277
4
- data.tar.gz: 938a0a5efefa5c4f181bccdb996be922ad51d8dfd7cfe623209d4582aa19d4e5
3
+ metadata.gz: 2359fa39f6387727f76770372b1f798ae60fdf34dce8bd481b06d58e5a128c4b
4
+ data.tar.gz: 6194f07e51ce46a4c9bdd3fd7d2fd895eebcb8e6f34e76c37b3c078d3ea58fb9
5
5
  SHA512:
6
- metadata.gz: c40b54efa01653b785065707a57841fd156ba6238a4eccbc09454f969b1cfd08439bbb70431de985874606fe88115e7688dc2e8819c83335bbfd17a0c339a557
7
- data.tar.gz: 4a7cdf6351af6e718ac857aaf87c052f1fc85110aca42eb049a22e18f63c25188a5e0189713ff46fa9ee7573e5a4d7729979fdf892a6c1a1f992fd127045618c
6
+ metadata.gz: e76a1651bfac0b0f197cae93a9fa3139e798a3a2ab0ae00950d08eb5e724834f9ccce7fe06beb98b083988fd4d7b672431aee5c23a66c24cce2782669606b517
7
+ data.tar.gz: 688367a83417deb0a812e96982f9c44ec369a1ee6984836338c25b07bd11843ced02053341044cebcaf2e4e71ce5ef26316799850831e446b85ece5766d31ddf
@@ -44,7 +44,7 @@ class RGB::Color
44
44
  self.r, self.g, self.b = rgb.flatten
45
45
  end
46
46
 
47
- # Creates a new Color object from red, green, and blue components as integers in the range 0..255 (three 8-bit values).
47
+ # Creates a new RGB::Color from red, green, and blue components as integers in the range 0..255 (three 8-bit values).
48
48
  def self.rgb(*rgb)
49
49
  c = self.new
50
50
  c.rgb = rgb
@@ -57,22 +57,19 @@ class RGB::Color
57
57
  self
58
58
  end
59
59
 
60
- # Creates a new RGB object containing the nearest 24-bit color.
60
+ # Creates a new RGB::Color containing the nearest 24-bit color.
61
61
  def snap
62
62
  RGB.rgb rgb
63
63
  end
64
64
 
65
65
  end
66
66
 
67
- #----------------------------------------------------------------------#
68
- # Module Methods #
69
- #----------------------------------------------------------------------#
70
67
 
71
68
  module RGB
72
69
 
73
70
  class << self
74
71
 
75
- # Creates a new Color object from red, green, and blue components as integers in the range 0..255 (three 8-bit values).
72
+ # Creates a new RGB::Color from red, green, and blue components as integers in the range 0..255 (three 8-bit values).
76
73
  def rgb(*rgb)
77
74
  Color.rgb(*rgb)
78
75
  end
@@ -44,7 +44,7 @@ class RGB::Color
44
44
  self.rr, self.gg, self.bb = rrggbb.flatten
45
45
  end
46
46
 
47
- # Creates a new Color object from red, green, and blue components as integers in the range 0..65535 (three 16-bit values).
47
+ # Creates a new RGB::Color from red, green, and blue components as integers in the range 0..65535 (three 16-bit values).
48
48
  def self.rrggbb(*rrggbb)
49
49
  c = self.new
50
50
  c.rrggbb = rrggbb
@@ -53,15 +53,12 @@ class RGB::Color
53
53
 
54
54
  end
55
55
 
56
- #----------------------------------------------------------------------#
57
- # Module Methods #
58
- #----------------------------------------------------------------------#
59
56
 
60
57
  module RGB
61
58
 
62
59
  class << self
63
60
 
64
- # Creates a new Color object from red, green, and blue components as integers in the range 0..65535 (three 16-bit values).
61
+ # Creates a new RGB::Color from red, green, and blue components as integers in the range 0..65535 (three 16-bit values).
65
62
  def rrggbb(*rrggbb)
66
63
  Color.rrggbb(*rrggbb)
67
64
  end
@@ -88,7 +88,7 @@ module RGB
88
88
 
89
89
  class << self
90
90
 
91
- # Creates a new Color object from red, green, and blue components as three values between 0 and 1.
91
+ # Creates a new RGB::Color from red, green, and blue components as three values between 0 and 1.
92
92
  def new(*a)
93
93
  Color.new(*a)
94
94
  end
@@ -10,7 +10,7 @@ class RGB::Color
10
10
  self.b, self.g, self.r = bgr_string.unpack('C3')
11
11
  end
12
12
 
13
- # Creates a new RGB::Color object from BGR24 data (a 3-byte string).
13
+ # Creates a new RGB::Color from BGR24 data (a 3-byte string).
14
14
  def self.bgr24(bgr)
15
15
  c = self.new
16
16
  c.bgr24 = bgr
@@ -19,15 +19,12 @@ class RGB::Color
19
19
 
20
20
  end
21
21
 
22
- #----------------------------------------------------------------------#
23
- # Module Methods #
24
- #----------------------------------------------------------------------#
25
22
 
26
23
  module RGB
27
24
 
28
25
  class << self
29
26
 
30
- # Creates a new RGB::Color object from BGR24 data (a 3-byte string).
27
+ # Creates a new RGB::Color from BGR24 data (a 3-byte string).
31
28
  def bgr24(bgr)
32
29
  Color.bgr24(bgr)
33
30
  end
@@ -1,5 +1,20 @@
1
1
  class RGB::Color
2
2
 
3
+ class << self
4
+
5
+ # Creates a new RGB::Color from CIE 1931 XYZ values.
6
+ #
7
+ # Assumes the XYZ values are relative to D65 reference white, the same as used in sRGB.
8
+ def cie_xyz(*a)
9
+ c = self.new
10
+ c.cie_xyz = a
11
+ c
12
+ end
13
+
14
+ alias xyz cie_xyz
15
+
16
+ end
17
+
3
18
  # Returns CIE 1931 XYZ values for the RGB::Color object.
4
19
  #
5
20
  # Based on:
@@ -11,41 +26,74 @@ class RGB::Color
11
26
  r, g, b = linear_values
12
27
 
13
28
  [
14
-
15
29
  r * 0.4124_5643_9090 + g * 0.3575_7607_7644 + b * 0.1804_3748_3266,
16
30
  r * 0.2126_7285_1406 + g * 0.7151_5215_5288 + b * 0.0721_7499_3307,
17
31
  r * 0.0193_3389_5582 + g * 0.1191_9202_5881 + b * 0.9503_0407_8536
18
-
19
32
  ].map { |v| round ? v.round(8) : v }
20
33
  end
21
34
 
22
35
  alias xyz cie_xyz
23
36
 
37
+ # Sets the red, green, and blue values by converting the given CIE 1931 XYZ values to RGB.
38
+ #
39
+ # Assumes the XYZ values are relative to D65 reference white, the same as used in sRGB.
40
+ #
41
+ # Based on:
42
+ # - http://www.brucelindbloom.com/index.html?Eqn_XYZ_to_RGB.html
43
+ # XYZ to sRGB matrix for D65 reference white calculated with Javascript by Bruce Lindbloom:
44
+ # - http://www.brucelindbloom.com/ColorCalculator.html
45
+ def cie_xyz=(*a)
46
+ x, y, z = a.flatten
47
+ self.linear_values = [
48
+ x * 3.2404_5416_2114 + y * -1.5371_3851_2798 + z * -0.498_5314_09556,
49
+ x * -0.9692_6603_0505 + y * 1.8760_1084_5447 + z * 0.0415_5601_7530,
50
+ x * 0.0556_4343_0959 + y * -0.2040_2591_3517 + z * 1.0572_2518_8223
51
+ ]
52
+ end
53
+
54
+ alias xyz= cie_xyz=
55
+
24
56
  # Returns CIE 1931 xyY values for the RGB::Color object.
25
57
  #
26
58
  # Based on:
27
59
  # - https://en.wikipedia.org/wiki/CIE_1931_color_space
28
60
  # - http://www.brucelindbloom.com/index.html?Eqn_XYZ_to_xyY.html
29
61
  # - https://ninedegreesbelow.com/photography/xyz-rgb.html
30
- def cie_xyy
62
+ def cie_xyy(round: true)
31
63
  x, y, z = cie_xyz(round: false)
32
64
 
33
65
  [
34
-
35
66
  x / ( x + y + z ),
36
67
  y / ( x + y + z ),
37
68
  y
38
-
39
- ].map { |v| v.round(8) }
69
+ ].map { |v| round ? v.round(8) : v }
40
70
  end
41
71
 
42
72
  alias xyy cie_xyy
43
73
 
44
74
  # Returns CIE 1931 xy values for the RGB::Color object.
45
- def cie_xy
46
- cie_xyy[0..1]
75
+ def cie_xy(round: true)
76
+ cie_xyy(round: round)[0..1]
47
77
  end
48
78
 
49
79
  alias xy cie_xy
50
80
 
51
81
  end
82
+
83
+
84
+ module RGB
85
+
86
+ class << self
87
+
88
+ # Creates a new RGB::Color from CIE 1931 XYZ values.
89
+ #
90
+ # Assumes the XYZ values are relative to D65 reference white, the same as used in sRGB.
91
+ def cie_xyz(*a)
92
+ RGB::Color.cie_xyz(a)
93
+ end
94
+
95
+ alias xyz cie_xyz
96
+
97
+ end
98
+
99
+ end
@@ -1,12 +1,8 @@
1
1
  class RGB::Color
2
2
 
3
- #----------------------------------------------------------------------#
4
- # Class Methods #
5
- #----------------------------------------------------------------------#
6
-
7
3
  class << self
8
4
 
9
- # Creates a new RGB::Color object from a line of gpl (Gimp color palette) input. Returns nil if not successful.
5
+ # Creates a new RGB::Color from a line of gpl (Gimp color palette) input. Returns nil if not successful.
10
6
  #
11
7
  # @example
12
8
  # RGB::Color.gpl "255 153 204\tpink"
@@ -22,9 +18,6 @@ class RGB::Color
22
18
 
23
19
  end
24
20
 
25
- #----------------------------------------------------------------------#
26
- # Instance Methods #
27
- #----------------------------------------------------------------------#
28
21
 
29
22
  # Returns the color in the format used in .gpl files (Gimp color palettes), including its name (if present).
30
23
  #
@@ -41,7 +34,7 @@ module RGB
41
34
 
42
35
  class << self
43
36
 
44
- # Creates a new RGB::Color object from a line of gpl (Gimp color palette) input. Returns nil if not successful.
37
+ # Creates a new RGB::Color from a line of gpl (Gimp color palette) input. Returns nil if not successful.
45
38
  #
46
39
  # @example
47
40
  # RGB.gpl "255 153 204\tpink"
@@ -28,11 +28,8 @@ class RGB::Color
28
28
  '%02x%02x%02x' % [ r, g, b ]
29
29
  end
30
30
 
31
- #----------------------------------------------------------------------#
32
- # Class Methods #
33
- #----------------------------------------------------------------------#
34
31
 
35
- # Creates a new Color object from a 6- or 3-digit hexadecimal string representing red, green, and blue.
32
+ # Creates a new RGB::Color from a 6- or 3-digit hexadecimal string representing red, green, and blue.
36
33
  #
37
34
  # The string may include a '#' prefix.
38
35
  def self.hex(hex_string)
@@ -49,7 +46,7 @@ module RGB
49
46
 
50
47
  class << self
51
48
 
52
- # Creates a new Color object from a 6- or 3-digit hexadecimal string representing red, green, and blue.
49
+ # Creates a new RGB::Color from a 6- or 3-digit hexadecimal string representing red, green, and blue.
53
50
  #
54
51
  # The string may include a '#' prefix.
55
52
  def hex(hex_string)
@@ -2,21 +2,13 @@ require 'redgreenblue/hsv'
2
2
 
3
3
  class RGB::Color
4
4
 
5
- #----------------------------------------------------------------------#
6
- # Class Methods #
7
- #----------------------------------------------------------------------#
8
-
9
5
  class << self
10
6
 
11
- # Creates a new RGB::Color object from HSB values: hue (0..360), saturation (0..1), and brightness (0..1).
7
+ # Creates a new RGB::Color from HSB values: hue (0..360), saturation (0..1), and brightness (0..1).
12
8
  alias hsb hsv
13
9
 
14
10
  end
15
11
 
16
- #----------------------------------------------------------------------#
17
- # Instance Methods #
18
- #----------------------------------------------------------------------#
19
-
20
12
  # Returns color as HSB:
21
13
  # hue (0..360), saturation (0..1), brightness (0..1).
22
14
  # When saturation is 0, hue is nil.
@@ -60,15 +52,12 @@ class RGB::Color
60
52
 
61
53
  end
62
54
 
63
- #----------------------------------------------------------------------#
64
- # Module Methods #
65
- #----------------------------------------------------------------------#
66
55
 
67
56
  module RGB
68
57
 
69
58
  class << self
70
59
 
71
- # Creates a new RGB::Color object from HSB values: hue (0..360), saturation (0..1), and brightness (0..1).
60
+ # Creates a new RGB::Color from HSB values: hue (0..360), saturation (0..1), and brightness (0..1).
72
61
  alias hsb hsv
73
62
 
74
63
  end
@@ -3,13 +3,9 @@ require 'redgreenblue/math'
3
3
 
4
4
  class RGB::Color
5
5
 
6
- #----------------------------------------------------------------------#
7
- # Class Methods #
8
- #----------------------------------------------------------------------#
9
-
10
6
  class << self
11
7
 
12
- # Creates a new RGB::Color object from HSL values: hue (0..360), saturation (0..1), and lightness (0..1).
8
+ # Creates a new RGB::Color from HSL values: hue (0..360), saturation (0..1), and lightness (0..1).
13
9
  def hsl(*a)
14
10
  new hsl_to_values(*a)
15
11
  end
@@ -23,10 +19,6 @@ class RGB::Color
23
19
 
24
20
  end
25
21
 
26
- #----------------------------------------------------------------------#
27
- # Instance Methods #
28
- #----------------------------------------------------------------------#
29
-
30
22
  # Returns color as HSL:
31
23
  # hue (0..360), saturation (0..1), lightness (0..1).
32
24
  # When saturation is 0, hue is nil.
@@ -95,15 +87,12 @@ class RGB::Color
95
87
 
96
88
  end
97
89
 
98
- #----------------------------------------------------------------------#
99
- # Module Methods #
100
- #----------------------------------------------------------------------#
101
90
 
102
91
  module RGB
103
92
 
104
93
  class << self
105
94
 
106
- # Creates a new RGB::Color object from HSL values: hue (0..360), saturation (0..1), and lightness (0..1).
95
+ # Creates a new RGB::Color from HSL values: hue (0..360), saturation (0..1), and lightness (0..1).
107
96
  def hsl(*a)
108
97
  Color.hsl(*a)
109
98
  end
@@ -3,13 +3,9 @@ require 'redgreenblue/math'
3
3
 
4
4
  class RGB::Color
5
5
 
6
- #----------------------------------------------------------------------#
7
- # Class Methods #
8
- #----------------------------------------------------------------------#
9
-
10
6
  class << self
11
7
 
12
- # Creates a new RGB::Color object from HSV values: hue (0..360), saturation (0..1), and value (0..1).
8
+ # Creates a new RGB::Color from HSV values: hue (0..360), saturation (0..1), and value (0..1).
13
9
  def hsv(*a)
14
10
  new hsv_to_values(*a)
15
11
  end
@@ -23,10 +19,6 @@ class RGB::Color
23
19
 
24
20
  end
25
21
 
26
- #----------------------------------------------------------------------#
27
- # Instance Methods #
28
- #----------------------------------------------------------------------#
29
-
30
22
  # Returns color as HSV:
31
23
  # hue (0..360), saturation (0..1), value (0..1).
32
24
  # When saturation is 0, hue is nil.
@@ -95,15 +87,12 @@ class RGB::Color
95
87
 
96
88
  end
97
89
 
98
- #----------------------------------------------------------------------#
99
- # Module Methods #
100
- #----------------------------------------------------------------------#
101
90
 
102
91
  module RGB
103
92
 
104
93
  class << self
105
94
 
106
- # Creates a new RGB::Color object from HSV values: hue (0..360), saturation (0..1), and value (0..1).
95
+ # Creates a new RGB::Color from HSV values: hue (0..360), saturation (0..1), and value (0..1).
107
96
  def hsv(*a)
108
97
  Color.hsv(*a)
109
98
  end
@@ -1,9 +1,5 @@
1
1
  class RGB::Color
2
2
 
3
- #----------------------------------------------------------------------#
4
- # Class Methods #
5
- #----------------------------------------------------------------------#
6
-
7
3
  class << self
8
4
 
9
5
  private
@@ -48,10 +44,6 @@ class RGB::Color
48
44
 
49
45
  end
50
46
 
51
- #----------------------------------------------------------------------#
52
- # Instance Methods #
53
- #----------------------------------------------------------------------#
54
-
55
47
  private
56
48
 
57
49
  # Compute HSL, HSV, and chroma.
@@ -42,9 +42,6 @@ class RGB::Color
42
42
 
43
43
  end
44
44
 
45
- #----------------------------------------------------------------------#
46
- # Module Methods #
47
- #----------------------------------------------------------------------#
48
45
 
49
46
  module RGB
50
47
 
@@ -5,7 +5,7 @@ class RGB::Color
5
5
  ( r << 16 ) + ( g << 8 ) + b
6
6
  end
7
7
 
8
- # Creates a new RGB::Color object from a 24-bit integer in the range 0..16777215.
8
+ # Creates a new RGB::Color from a 24-bit integer in the range 0..16777215.
9
9
  def self.at(number)
10
10
  n = number.to_i
11
11
  if (0..16777215) === n
@@ -21,15 +21,12 @@ class RGB::Color
21
21
 
22
22
  end
23
23
 
24
- #----------------------------------------------------------------------#
25
- # Module Methods #
26
- #----------------------------------------------------------------------#
27
24
 
28
25
  module RGB
29
26
 
30
27
  class << self
31
28
 
32
- # Creates a new RGB::Color object from a 24-bit integer in the range 0..16777215.
29
+ # Creates a new RGB::Color from a 24-bit integer in the range 0..16777215.
33
30
  def at(number)
34
31
  Color.at(number)
35
32
  end
@@ -1,22 +1,19 @@
1
1
  class RGB::Color
2
2
 
3
- #----------------------------------------------------------------------#
4
- # Class Methods #
5
- #----------------------------------------------------------------------#
6
3
 
7
4
  class << self
8
5
 
9
- # Creates a white RGB::Color object.
6
+ # Creates a white RGB::Color.
10
7
  def white
11
8
  new(1,1,1)
12
9
  end
13
10
 
14
- # Creates a black RGB::Color object.
11
+ # Creates a black RGB::Color.
15
12
  def black
16
13
  new(0,0,0)
17
14
  end
18
15
 
19
- # Creates a grey RGB::Color object. Defaults to lightness 0.5, a middle grey. Black equals grey(0), white equals grey(1).
16
+ # Creates a grey RGB::Color. Defaults to lightness 0.5, a middle grey. Black equals grey(0), white equals grey(1).
20
17
  #
21
18
  # ::gray is an alias for ::grey.
22
19
  def grey(lightness=0.5)
@@ -26,32 +23,32 @@ class RGB::Color
26
23
  # Alias gray for grey.
27
24
  alias gray grey
28
25
 
29
- # Creates a pure red RGB::Color object.
26
+ # Creates a pure red RGB::Color.
30
27
  def red
31
28
  new(1,0,0)
32
29
  end
33
30
 
34
- # Creates a pure green RGB::Color object.
31
+ # Creates a pure green RGB::Color.
35
32
  def green
36
33
  new(0,1,0)
37
34
  end
38
35
 
39
- # Creates a pure blue RGB::Color object.
36
+ # Creates a pure blue RGB::Color.
40
37
  def blue
41
38
  new(0,0,1)
42
39
  end
43
40
 
44
- # Creates a yellow RGB::Color object.
41
+ # Creates a yellow RGB::Color.
45
42
  def yellow
46
43
  new(1,1,0)
47
44
  end
48
45
 
49
- # Creates a cyan RGB::Color object.
46
+ # Creates a cyan RGB::Color.
50
47
  def cyan
51
48
  new(0,1,1)
52
49
  end
53
50
 
54
- # Creates a magenta RGB::Color object.
51
+ # Creates a magenta RGB::Color.
55
52
  def magenta
56
53
  new(1,0,1)
57
54
  end
@@ -72,25 +69,22 @@ class RGB::Color
72
69
 
73
70
  end
74
71
 
75
- #----------------------------------------------------------------------#
76
- # Module Methods #
77
- #----------------------------------------------------------------------#
78
72
 
79
73
  module RGB
80
74
 
81
75
  class << self
82
76
 
83
- # Creates a white RGB::Color object.
77
+ # Creates a white RGB::Color.
84
78
  def white
85
79
  Color.white
86
80
  end
87
81
 
88
- # Creates a black RGB::Color object.
82
+ # Creates a black RGB::Color.
89
83
  def black
90
84
  Color.black
91
85
  end
92
86
 
93
- # Creates a grey RGB::Color object. Defaults to lightness 0.5, a middle grey. Black equals grey(0), white equals grey(1).
87
+ # Creates a grey RGB::Color. Defaults to lightness 0.5, a middle grey. Black equals grey(0), white equals grey(1).
94
88
  #
95
89
  # ::gray is an alias for ::grey.
96
90
  def grey(lightness=0.5)
@@ -100,32 +94,32 @@ module RGB
100
94
  # Alias gray for grey.
101
95
  alias gray grey
102
96
 
103
- # Creates a pure red RGB::Color object.
97
+ # Creates a pure red RGB::Color.
104
98
  def red
105
99
  Color.red
106
100
  end
107
101
 
108
- # Creates a pure green RGB::Color object.
102
+ # Creates a pure green RGB::Color.
109
103
  def green
110
104
  Color.green
111
105
  end
112
106
 
113
- # Creates a pure blue RGB::Color object.
107
+ # Creates a pure blue RGB::Color.
114
108
  def blue
115
109
  Color.blue
116
110
  end
117
111
 
118
- # Creates a yellow RGB::Color object.
112
+ # Creates a yellow RGB::Color.
119
113
  def yellow
120
114
  Color.yellow
121
115
  end
122
116
 
123
- # Creates a cyan RGB::Color object.
117
+ # Creates a cyan RGB::Color.
124
118
  def cyan
125
119
  Color.cyan
126
120
  end
127
121
 
128
- # Creates a magenta RGB::Color object.
122
+ # Creates a magenta RGB::Color.
129
123
  def magenta
130
124
  Color.magenta
131
125
  end
@@ -51,9 +51,6 @@ class RGB::Color
51
51
 
52
52
  end
53
53
 
54
- #----------------------------------------------------------------------#
55
- # Module Methods #
56
- #----------------------------------------------------------------------#
57
54
 
58
55
  module RGB
59
56
 
@@ -1,6 +1,6 @@
1
1
  class RGB::Color
2
2
 
3
- # Returns a new RGB::Color object with this color's Ostwald full-color,
3
+ # Returns a new RGB::Color with this color's Ostwald full-color,
4
4
  # or nil for achromatic colors (white, greys, and black).
5
5
  #
6
6
  # The resulting color contains no white or black,
@@ -24,9 +24,6 @@ class RGB::Color
24
24
 
25
25
  end
26
26
 
27
- #----------------------------------------------------------------------#
28
- # Module Methods #
29
- #----------------------------------------------------------------------#
30
27
 
31
28
  module RGB
32
29
 
@@ -24,9 +24,6 @@ class RGB::Color
24
24
 
25
25
  end
26
26
 
27
- #----------------------------------------------------------------------#
28
- # Module Methods #
29
- #----------------------------------------------------------------------#
30
27
 
31
28
  module RGB
32
29
 
@@ -1,7 +1,7 @@
1
1
  module RGB
2
2
 
3
3
  # redgreenblue version.
4
- VERSION = '0.16.0'
4
+ VERSION = '0.17.0'
5
5
 
6
6
  # Returns RGB::VERSION.
7
7
  def self.version
@@ -1,9 +1,5 @@
1
1
  class RGB::Color
2
2
 
3
- #----------------------------------------------------------------------#
4
- # Instance Methods #
5
- #----------------------------------------------------------------------#
6
-
7
3
  # Returns the object's RGB value in hexadecimal notation as used in CSS.
8
4
  #
9
5
  # Shortens to 3 digits when possible.
@@ -62,9 +58,6 @@ class RGB::Color
62
58
 
63
59
  end
64
60
 
65
- #----------------------------------------------------------------------#
66
- # Module Methods #
67
- #----------------------------------------------------------------------#
68
61
 
69
62
  module RGB
70
63
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: redgreenblue
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.16.0
4
+ version: 0.17.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - lllist.eu
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-06-09 00:00:00.000000000 Z
11
+ date: 2022-07-18 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email: