color 1.6 → 1.7

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
- NzUzZTAyZmI4OGRlNmJlZWJiZDdhZDk5NmFhNDFiNGU4ZjNmMTQxNA==
4
+ ODBhNzg3NDUxYjM3YzhiYWE3YzNlOWRkNWIzNDNmODVjYzUwZWI2Yg==
5
5
  data.tar.gz: !binary |-
6
- YzJhMDQ1ZjdkYjgzNWM3YzFhNWYzYzAwMTkwOTViZjUzZDhhOGRmMQ==
6
+ MGIzY2I0OWU4Yjc5NWU0NzczOGJhNjVhYjQ1YTc3YjViN2RhMjc1Yg==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- NmQxOWEyNjJiZTJiNWQ1YzUxNGQzMzQ3MDhiYmI4MGRlN2Y1ZDg1OGIyNGY2
10
- NGRmYzA1YTI5YmExZTYzNTAzMDFkOTIxNTYyYTliZGJlN2IwYzU2OWZiYjMz
11
- YWMyNWViNWE5M2RiZGFmYzk1NDk2MzExZDk0NmI4YzVjNTg3NGM=
9
+ Mzc3MDY3NWUzZjdkZjU0NGUyMDUzM2M0MTg2Yzg5NWNmZjJlNzc5YWZhOWNm
10
+ MDdhNmFhY2JhMWM4Y2JlMDMxNjVlNWJkMDZhMTZjZDdlMDBiYjllMjAyMTgz
11
+ ZDRkMDVkMmY2MjAyMGMwYzcyYmVhYjM2ZjEzZGU5OWRkZjk4NDE=
12
12
  data.tar.gz: !binary |-
13
- ODkwMWY4NWNjMTRlMWJiOWY0ZjM0NzE0NjY2MDIwNWU0N2E5NjQxMmM1YTJi
14
- MDFiZjYzMzY0MzBhOTZhYjk5MTVkOGRiYmIwNTdjNDQ3MWU2NmE5MTZkMjhh
15
- MWYzMDk5YzY3NzA1OGQzZjg0OGNiYWRmZWJiOTNkOWI0YmM0NzM=
13
+ NmYwYzVhNDM0Y2U3NjU2YjEwZDU0NDZlYzc0NDgwNDI2N2FjOTQ2NzdhNjk0
14
+ NDA3MjY3OTgwOGE1Y2M2NzEwMDExZDMwNTE4MjZlOWNjNjVkZTA3Y2M2YjZm
15
+ M2Q4YWNjOTJmMTEyZjYyNGY5YmE1MzlhZGRhNDI5NDRlYWE3MmM=
Binary file
data.tar.gz.sig CHANGED
Binary file
@@ -1,3 +1,17 @@
1
+ == 1.7 / 2014-06-12
2
+
3
+ * Minor enhancements:
4
+ * Added Color::RGB::BeccaPurple (#663399) in honour of Rebecca Meyer, the
5
+ daughter of Eric Meyer, who passed away on the 7th of June, 2014. Her
6
+ favourite colour was purple. #663399becca
7
+ https://twitter.com/meyerweb/status/476089708674428929
8
+ http://www.zeldman.com/2014/06/10/the-color-purple/
9
+ http://discourse.specifiction.org/t/name-663399-becca-purple-in-css4-color/225
10
+
11
+ * Bug fixes:
12
+ * Changed the homepage in the gem to point to github.com instead of
13
+ RubyForge, which has been shut down. Fixes #10, reported by @voxik.
14
+
1
15
  == 1.6 / 2014-05-19
2
16
 
3
17
  * Major enhancements:
@@ -1,6 +1,6 @@
1
1
  = Color
2
2
 
3
- home :: http://color.rubyforge.org
3
+ home :: https://github.com/halostatue/color
4
4
  code :: https://github.com/halostatue/color
5
5
  bugs :: https://github.com/halostatue/color/issues
6
6
  rdoc :: http://rubydoc.info/github/halostatue/color
@@ -22,9 +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.6 primarily adds a colour matching method for RGB and
26
- experimental CIE L*a*b* and XYZ conversion methods for use with the colour
27
- matching method.
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]
28
29
 
29
30
  Barring bugs introduced in this release, this is the last version of color that
30
31
  supports Ruby 1.8, so make sure that your gem specification is set properly (to
data/Rakefile CHANGED
@@ -46,6 +46,8 @@ if RUBY_VERSION >= '1.9'
46
46
  'require "simplecov"',
47
47
  'require "coveralls"',
48
48
  'SimpleCov.formatter = Coveralls::SimpleCov::Formatter',
49
+ 'SimpleCov.start("test_frameworks") { command_name "Minitest" }',
50
+ 'gem "minitest"'
49
51
  ].join('; ')
50
52
  Rake::Task['test'].execute
51
53
  end
@@ -3,7 +3,7 @@
3
3
 
4
4
  # = Colour Management with Ruby
5
5
  module Color
6
- COLOR_VERSION = '1.6'
6
+ COLOR_VERSION = '1.7'
7
7
 
8
8
  class RGB; end
9
9
  class CMYK; end
@@ -13,6 +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
17
  named [0x00, 0x00, 0x00], :Black
17
18
  named [0xff, 0xeb, 0xcd], :BlanchedAlmond
18
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.6'
4
+ version: '1.7'
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-05-20 00:00:00.000000000 Z
40
+ date: 2014-06-13 00:00:00.000000000 Z
41
41
  dependencies:
42
42
  - !ruby/object:Gem::Dependency
43
43
  name: minitest
@@ -190,11 +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.6 primarily adds a colour matching method for RGB and
193
+ Color version 1.7 adds Color::RGB::BeccaPurple for the colour #663399 in honour
194
194
 
195
- experimental CIE L*a*b* and XYZ conversion methods for use with the colour
195
+ of Rebecca Meyer, the daughter of Eric Meyer, who passed away on the 7th of
196
196
 
197
- matching method.
197
+ June, 2014. Her favourite colour was purple.
198
+
199
+ {#663399becca}[https://twitter.com/hashtag/663399becca]
198
200
 
199
201
 
200
202
  Barring bugs introduced in this release, this is the last version of color that
@@ -251,7 +253,7 @@ files:
251
253
  - test/test_monocontrast.rb
252
254
  - test/test_rgb.rb
253
255
  - test/test_yiq.rb
254
- homepage: http://color.rubyforge.org
256
+ homepage: https://github.com/halostatue/color
255
257
  licenses:
256
258
  - MIT
257
259
  metadata: {}
metadata.gz.sig CHANGED
Binary file