forked from kevinjalbert/pronto-stylelint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpronto-stylelint.gemspec
31 lines (26 loc) · 1021 Bytes
/
pronto-stylelint.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
31
# -*- encoding: utf-8 -*-
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'pronto/stylelint/version'
Gem::Specification.new do |s|
s.name = 'pronto-stylelint'
s.version = Pronto::StylelintVersion::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Kevin Jalbert']
s.email = '[email protected]'
s.homepage = 'https://github.com/kevinjalbert/pronto-stylelint'
s.summary = <<-EOF
Pronto runner for stylelint, the mighty, modern CSS linter.
EOF
s.licenses = ['MIT']
s.required_ruby_version = '>= 2.3.0'
s.rubygems_version = '1.8.23'
s.files = Dir.glob('{lib}/**/*') + %w(LICENSE README.md)
s.test_files = `git ls-files -- {spec}/*`.split("\n")
s.extra_rdoc_files = ['LICENSE', 'README.md']
s.require_paths = ['lib']
s.requirements << 'stylelint (in PATH)'
s.add_dependency('pronto', '>= 0.10', '< 0.12')
s.add_dependency('rugged', '>= 0.24', '< 2.0')
s.add_development_dependency('rake', '~> 13.0')
s.add_development_dependency('rspec', '~> 3.4')
end