forked from sandersk/sass-cmyk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsass-cmyk.gemspec
20 lines (19 loc) · 1.01 KB
/
sass-cmyk.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Gem::Specification.new do |gem|
gem.name = 'sass-cmyk'
gem.summary = 'A plugin for Sass that provides preprocessing for CMYK colors, including some basic color manipulation functions'
gem.description = <<-DESC
Need to preprocess CMYK colors with Sass? The sass-cmyk plugin lets you construct CMYK color objects with cmyk(),
adds support for performing math operations (+, *, /) on CMYK colors, and provides functions for mixing and scaling color components.
sass-cmyk outputs CMYK color values using cmyk() function syntax supported by AntennaHouse and PrinceXML PDF formatters,
making it a great fit for doing print typesetting with CSS.
DESC
gem.version = '0.0.2'
gem.authors = ['Sanders Kleinfeld and O\'Reilly Tools Team']
gem.email = '[email protected]'
gem.homepage = 'https://github.com/oreillymedia/sass-cmyk'
gem.license = 'MIT'
gem.files = ['lib/sass-cmyk.rb']
gem.required_ruby_version = '>= 3.3.6'
gem.add_development_dependency "rspec"
gem.add_runtime_dependency "sass"
end