forked from sds/scss-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scss_lint.gemspec
30 lines (23 loc) · 946 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
29
30
$LOAD_PATH << 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.summary = 'SCSS lint tool'
s.description = 'Configurable tool for writing clean and consistent SCSS'
s.authors = ['Brigade Engineering', 'Shane da Silva']
s.email = ['[email protected]', '[email protected]']
s.homepage = SCSSLint::REPO_URL
s.require_paths = ['lib']
s.executables = ['scss-lint']
s.files = Dir['config/**/*.yml'] +
Dir['data/**/*'] +
Dir['lib/**/*.rb'] +
['MIT-LICENSE']
s.test_files = Dir['spec/**/*']
s.required_ruby_version = '>= 2.1'
s.add_dependency 'rake', '>= 0.9', '< 13'
s.add_dependency 'sass', '~> 3.5.5'
end