forked from sds/scss-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scss-lint.gemspec
28 lines (23 loc) · 1009 Bytes
/
scss-lint.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'scss_lint/constants'
require 'scss_lint/version'
Gem::Specification.new do |s|
s.name = 'scss-lint'
s.version = SCSSLint::VERSION
s.license = 'MIT'
s.platform = Gem::Platform::RUBY
s.authors = ['Causes Engineering', 'Shane da Silva']
s.email = ['[email protected]', '[email protected]']
s.homepage = SCSSLint::REPO_URL
s.summary = 'SCSS lint tool'
s.description = 'Configurable tool to help write clean and consistent SCSS'
s.files = Dir['config/**/*.yml'] + Dir['data/**'] + Dir['lib/**/*.rb']
s.executables = ['scss-lint']
s.require_paths = ['lib']
s.required_ruby_version = '>= 1.9.3'
s.add_dependency 'colorize', '0.5.8' # Need 0.5.8 to prevent color to non-TTYs
s.add_dependency 'sass', '3.3.0.rc.1' # Hard dependency since we monkey patch AST
s.add_development_dependency 'nokogiri', '1.6.1'
s.add_development_dependency 'rspec', '2.14.1'
end