-
Notifications
You must be signed in to change notification settings - Fork 12
/
colorist.gemspec
21 lines (21 loc) · 925 Bytes
/
colorist.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Gem::Specification.new do |s|
s.name = "colorist"
s.version = "0.0.3"
s.date = "2008-08-16"
s.summary = "A library built to handle the easy conversion and simple manipulation of colors."
s.email = "[email protected]"
s.homepage = "http://github.com/mbleigh/colorist"
s.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."
s.has_rdoc = true
s.authors = ["Michael Bleigh"]
s.files = [ "MIT_LICENSE.rdoc",
"README.rdoc",
"CHANGELOG.rdoc",
"lib/colorist.rb",
"lib/colorist/color.rb",
"lib/colorist/core_extensions.rb" ]
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec', '~> 2.8'
s.rdoc_options = ["--main", "README.rdoc"]
s.extra_rdoc_files = ["MIT_LICENSE.rdoc", "README.rdoc"]
end