forked from zmoazeni/csscss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
csscss.gemspec
22 lines (19 loc) · 906 Bytes
/
csscss.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'csscss/version'
Gem::Specification.new do |gem|
gem.name = "csscss"
gem.version = Csscss::VERSION
gem.authors = ["Zach Moazeni"]
gem.email = ["[email protected]"]
gem.summary = %q{A CSS redundancy analyzer that analyzes redundancy.}
gem.description = %q{csscss will parse any CSS files you give it and let you know which rulesets have duplicated declarations.}
gem.homepage = "http://zmoazeni.github.com/csscss/"
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_dependency "parslet", "~> 1.5"
gem.add_dependency "colorize"
end