color 1.7 → 1.7.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- ODBhNzg3NDUxYjM3YzhiYWE3YzNlOWRkNWIzNDNmODVjYzUwZWI2Yg==
4
+ YWMzMTI3YmE1NGRlNzZmYTY1ZWQ3ZWE2MTk2MTM2ZTFlOTAyYWMzYw==
5
5
  data.tar.gz: !binary |-
6
- MGIzY2I0OWU4Yjc5NWU0NzczOGJhNjVhYjQ1YTc3YjViN2RhMjc1Yg==
6
+ YTE5YzdlZmQ1ZjA0MjljMDIzZDU0NDdlOWQyOTQyYjNhY2ZkZGJkOA==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- Mzc3MDY3NWUzZjdkZjU0NGUyMDUzM2M0MTg2Yzg5NWNmZjJlNzc5YWZhOWNm
10
- MDdhNmFhY2JhMWM4Y2JlMDMxNjVlNWJkMDZhMTZjZDdlMDBiYjllMjAyMTgz
11
- ZDRkMDVkMmY2MjAyMGMwYzcyYmVhYjM2ZjEzZGU5OWRkZjk4NDE=
9
+ MzhkMTVmMmNlMWM3ZTBlNmRiNDY1ZmViY2YyOGMzMjI3NjFmODc4ZDhiZjgy
10
+ NTM1NDhhNWViOTM2ZjE3NDYxZmI4NDFjNDdmMWI5MWFlNWU5YTEyNDZiOGJk
11
+ ZjBhZjJlM2MyNGU4ZTU1M2FlYWVhOTJiZGQzNGY4YzJiNDUxMzU=
12
12
  data.tar.gz: !binary |-
13
- NmYwYzVhNDM0Y2U3NjU2YjEwZDU0NDZlYzc0NDgwNDI2N2FjOTQ2NzdhNjk0
14
- NDA3MjY3OTgwOGE1Y2M2NzEwMDExZDMwNTE4MjZlOWNjNjVkZTA3Y2M2YjZm
15
- M2Q4YWNjOTJmMTEyZjYyNGY5YmE1MzlhZGRhNDI5NDRlYWE3MmM=
13
+ NzRkOWE3MjQwZDMxZmUxMjNmYjNjMjVhNmQ0MjQzNjEzNmJiZjYxNWZiZjgy
14
+ MjE5MDQ5Y2ZjNmYzYzUzMjQ1NDk0Nzg0Yzk3NDcxOWQ1NmMyZGExMGE3Y2Nk
15
+ MDBhMGUxZWQ3ZTZhYjk0MWQ3OGQ4OThiNjZjY2IwMjY5NTA3NzA=
Binary file
data.tar.gz.sig CHANGED
Binary file
@@ -1,3 +1,12 @@
1
+ == 1.7.1 / 2014-06-12
2
+
3
+ * Minor enhancements:
4
+ * Renamed Color::RGB::BeccaPurple to Color::RGB::RebeccaPurple as stipulated
5
+ by Eric Meyer. http://meyerweb.com/eric/thoughts/2014/06/19/rebeccapurple/
6
+ For purposes of backwards compatibility, the previous name is still
7
+ permitted, but its use is strongly discouraged, and it will be removed in
8
+ the Color 2.0 release.
9
+
1
10
  == 1.7 / 2014-06-12
2
11
 
3
12
  * Minor enhancements:
@@ -22,10 +22,10 @@ this won't matter. Absolute colour spaces (like CIE L*a*b* and XYZ) and cannot
22
22
  be reliably converted to relative colour spaces (like RGB) without colour
23
23
  profiles.
24
24
 
25
- Color version 1.7 adds Color::RGB::BeccaPurple for the colour #663399 in honour
26
- of Rebecca Meyer, the daughter of Eric Meyer, who passed away on the 7th of
27
- June, 2014. Her favourite colour was purple.
28
- {#663399becca}[https://twitter.com/hashtag/663399becca]
25
+ Color version 1.7.1 adds Color::RGB::RebeccaPurple for the colour #663399 in
26
+ honour of Rebecca Meyer, the daughter of Eric Meyer, who passed away on the 7th
27
+ of June, 2014. Her favourite colour was purple.
28
+ {rebeccapurple}[http://meyerweb.com/eric/thoughts/2014/06/19/rebeccapurple/]
29
29
 
30
30
  Barring bugs introduced in this release, this is the last version of color that
31
31
  supports Ruby 1.8, so make sure that your gem specification is set properly (to
@@ -3,7 +3,7 @@
3
3
 
4
4
  # = Colour Management with Ruby
5
5
  module Color
6
- COLOR_VERSION = '1.7'
6
+ COLOR_VERSION = '1.7.1'
7
7
 
8
8
  class RGB; end
9
9
  class CMYK; end
@@ -13,7 +13,7 @@ class Color::RGB
13
13
  named [0xf0, 0xff, 0xff], :Azure
14
14
  named [0xf5, 0xf5, 0xdc], :Beige
15
15
  named [0xff, 0xe4, 0xc4], :Bisque
16
- named [0x66, 0x33, 0x99], :BeccaPurple
16
+ named [0x66, 0x33, 0x99], :RebeccaPurple, :BeccaPurple
17
17
  named [0x00, 0x00, 0x00], :Black
18
18
  named [0xff, 0xeb, 0xcd], :BlanchedAlmond
19
19
  named [0x00, 0x00, 0xff], :Blue
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: color
3
3
  version: !ruby/object:Gem::Version
4
- version: '1.7'
4
+ version: 1.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Austin Ziegler
@@ -37,7 +37,7 @@ cert_chain:
37
37
  SHkzay9FVEZoaSs3cElVV2xGbzBpbXJkeUxoZCtKdzNib1ZqM0NtdnloY3dt
38
38
  cG9NMEs5bApBT21yVWlFbFVxTE9aQT09Ci0tLS0tRU5EIENFUlRJRklDQVRF
39
39
  LS0tLS0K
40
- date: 2014-06-13 00:00:00.000000000 Z
40
+ date: 2014-07-17 00:00:00.000000000 Z
41
41
  dependencies:
42
42
  - !ruby/object:Gem::Dependency
43
43
  name: minitest
@@ -190,13 +190,13 @@ description: ! 'Color is a Ruby library to provide basic RGB, CMYK, HSL, and oth
190
190
  profiles.
191
191
 
192
192
 
193
- Color version 1.7 adds Color::RGB::BeccaPurple for the colour #663399 in honour
193
+ Color version 1.7.1 adds Color::RGB::RebeccaPurple for the colour #663399 in
194
194
 
195
- of Rebecca Meyer, the daughter of Eric Meyer, who passed away on the 7th of
195
+ honour of Rebecca Meyer, the daughter of Eric Meyer, who passed away on the 7th
196
196
 
197
- June, 2014. Her favourite colour was purple.
197
+ of June, 2014. Her favourite colour was purple.
198
198
 
199
- {#663399becca}[https://twitter.com/hashtag/663399becca]
199
+ {rebeccapurple}[http://meyerweb.com/eric/thoughts/2014/06/19/rebeccapurple/]
200
200
 
201
201
 
202
202
  Barring bugs introduced in this release, this is the last version of color that
metadata.gz.sig CHANGED
Binary file