color-tools 1.1.0 → 1.2.0
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.
- data/Changelog +10 -0
- data/Install +5 -2
- data/README +23 -18
- data/Rakefile +4 -1
- data/lib/color.rb +11 -2
- data/lib/color/cmyk.rb +116 -51
- data/lib/color/grayscale.rb +105 -0
- data/lib/color/rgb.rb +142 -122
- data/lib/color/yiq.rb +52 -0
- data/metaconfig +4 -0
- data/pre-setup.rb +46 -0
- data/setup.rb +1366 -0
- metadata +10 -5
metadata
CHANGED
@@ -3,19 +3,19 @@ rubygems_version: 0.8.10
|
|
3
3
|
specification_version: 1
|
4
4
|
name: color-tools
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 1.
|
7
|
-
date: 2005-
|
6
|
+
version: 1.2.0
|
7
|
+
date: 2005-07-01
|
8
8
|
summary: color-tools provides RGB and CMYK colour definitions and manpiulations.
|
9
9
|
require_paths:
|
10
10
|
- lib
|
11
11
|
email: austin@rubyforge.org
|
12
12
|
homepage: http://rubyforge.org/projects/ruby-pdf
|
13
13
|
rubyforge_project: ruby-pdf
|
14
|
-
description: "color-tools is a Ruby library to provide RGB and
|
14
|
+
description: "color-tools is a Ruby library to provide RGB, CMYK, and other colour support to
|
15
15
|
applications that require it. It provides 148 named RGB colours that are
|
16
16
|
commonly supported and used in HTML, colour manipulation operations, and a
|
17
|
-
monochromatic contrasting palette generator.
|
18
|
-
|
17
|
+
monochromatic contrasting palette generator. Version 1.2 introduces two new
|
18
|
+
colour spaces: GrayScale (also known as GreyScale) and YIQ (NTSC)."
|
19
19
|
autorequire: color
|
20
20
|
default_executable:
|
21
21
|
bindir: bin
|
@@ -34,14 +34,19 @@ files:
|
|
34
34
|
- Changelog
|
35
35
|
- Install
|
36
36
|
- lib
|
37
|
+
- metaconfig
|
38
|
+
- pre-setup.rb
|
37
39
|
- Rakefile
|
38
40
|
- README
|
41
|
+
- setup.rb
|
39
42
|
- lib/color
|
40
43
|
- lib/color.rb
|
41
44
|
- lib/color/cmyk.rb
|
45
|
+
- lib/color/grayscale.rb
|
42
46
|
- lib/color/palette
|
43
47
|
- lib/color/palette.rb
|
44
48
|
- lib/color/rgb.rb
|
49
|
+
- lib/color/yiq.rb
|
45
50
|
- lib/color/palette/gimp.rb
|
46
51
|
- lib/color/palette/monocontrast.rb
|
47
52
|
test_files: []
|