kmandrup-colorist 0.1.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.
- data/.gitignore +5 -0
- data/.specification +66 -0
- data/CHANGELOG.rdoc +10 -0
- data/MIT_LICENSE.rdoc +19 -0
- data/README.rdoc +43 -0
- data/Rakefile +61 -0
- data/VERSION +1 -0
- data/extractions/extract_colors.rb +436 -0
- data/kmandrup-colorist.gemspec +50 -0
- data/lib/colorist/color.rb +415 -0
- data/lib/colorist/color_names.rb +441 -0
- data/lib/colorist/core_extensions.rb +26 -0
- data/lib/kmandrup-colorist.rb +3 -0
- metadata +81 -0
metadata
ADDED
@@ -0,0 +1,81 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: kmandrup-colorist
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 1
|
8
|
+
- 2
|
9
|
+
version: 0.1.2
|
10
|
+
platform: ruby
|
11
|
+
authors:
|
12
|
+
- Michael Bleigh
|
13
|
+
- oleg dashevskii
|
14
|
+
- Slippy Douglas
|
15
|
+
- Kristian Mandrup
|
16
|
+
autorequire:
|
17
|
+
bindir: bin
|
18
|
+
cert_chain: []
|
19
|
+
|
20
|
+
date: 2010-05-27 00:00:00 -04:00
|
21
|
+
default_executable:
|
22
|
+
dependencies: []
|
23
|
+
|
24
|
+
description: Colorist is a library built to handle the easy conversion and manipulation of colors with a special emphasis on W3C standards and CSS-style hex color notation.
|
25
|
+
email: kmandrup@gmail.com
|
26
|
+
executables: []
|
27
|
+
|
28
|
+
extensions: []
|
29
|
+
|
30
|
+
extra_rdoc_files:
|
31
|
+
- MIT_LICENSE.rdoc
|
32
|
+
- README.rdoc
|
33
|
+
files:
|
34
|
+
- .gitignore
|
35
|
+
- .specification
|
36
|
+
- CHANGELOG.rdoc
|
37
|
+
- MIT_LICENSE.rdoc
|
38
|
+
- README.rdoc
|
39
|
+
- Rakefile
|
40
|
+
- VERSION
|
41
|
+
- extractions/extract_colors.rb
|
42
|
+
- kmandrup-colorist.gemspec
|
43
|
+
- lib/colorist/color.rb
|
44
|
+
- lib/colorist/color_names.rb
|
45
|
+
- lib/colorist/core_extensions.rb
|
46
|
+
- lib/kmandrup-colorist.rb
|
47
|
+
has_rdoc: true
|
48
|
+
homepage: http://github.com/kristianmandrup/colorist
|
49
|
+
licenses: []
|
50
|
+
|
51
|
+
post_install_message:
|
52
|
+
rdoc_options:
|
53
|
+
- --main
|
54
|
+
- README.rdoc
|
55
|
+
require_paths:
|
56
|
+
- lib
|
57
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
58
|
+
none: false
|
59
|
+
requirements:
|
60
|
+
- - ">="
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
segments:
|
63
|
+
- 0
|
64
|
+
version: "0"
|
65
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
66
|
+
none: false
|
67
|
+
requirements:
|
68
|
+
- - ">="
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
segments:
|
71
|
+
- 0
|
72
|
+
version: "0"
|
73
|
+
requirements: []
|
74
|
+
|
75
|
+
rubyforge_project:
|
76
|
+
rubygems_version: 1.3.7
|
77
|
+
signing_key:
|
78
|
+
specification_version: 3
|
79
|
+
summary: A library built to handle the easy conversion and simple manipulation of colors.
|
80
|
+
test_files: []
|
81
|
+
|