kevinjalbert/pronto-stylelint

View on GitHub
pronto-stylelint.gemspec

Summary

Maintainability
Test Coverage
# -*- 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 = 'kevin.j.jalbert@gmail.com'
  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