1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "compass/blend-modes/version"
Gem::Specification.new do |s|
s.name = 'compass-blend-modes'
s.version = Compass::BlendModes::VERSION
s.platform = Gem::Platform::RUBY
s.summary = "Using standard color blending functions in Sass."
s.description = "Using standard color blending functions in Sass."
s.homepage = "https://github.com/heygrady/scss-blend-modes"
s.authors = ["Grady Kuhnline"]
s.email = ["github@heygrady.net"]
s.license = 'MIT'
s.has_rdoc = false
s.files = `find * -not -path 'debian/*' -type f`.split("\n")
s.test_files = `find * -regextype posix-extended -regex '(test|spec|features)/.*`.split("\n")
s.executables = `find * -path 'bin/*' -type f`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_dependency('sass', ['~>3.3'])
end
|