]> git.immae.eu Git - github/fretlink/pronto-hlint.git/blame - pronto-hlint.gemspec
Welcom pronto-hlint! This is a whole rewrite of pronto-eslint_npm.
[github/fretlink/pronto-hlint.git] / pronto-hlint.gemspec
CommitLineData
0ab4d181 1# frozen_string_literal: true
5001cb27 2
0ab4d181 3$LOAD_PATH.push File.expand_path('lib', __dir__)
9c1df047 4require 'pronto/hlint/version'
ce89f9ed
MM
5
6Gem::Specification.new do |s|
9c1df047
PB
7 s.name = 'pronto-hlint'
8 s.version = Pronto::Hlint::VERSION
ce89f9ed 9 s.platform = Gem::Platform::RUBY
9c1df047
PB
10 s.authors = ['Paul Bonaud']
11 s.email = 'paul.bonaud@fretlink.com'
12 s.homepage = 'https://github.com/fretlink/pronto-hlint'
0ab4d181 13 s.summary = <<-EOF
9c1df047 14 Pronto runner for Hlint, pluggable linting utility for Haskell
ce89f9ed
MM
15 EOF
16
0ab4d181 17 s.licenses = ['MIT']
6bc6a0db 18 s.required_ruby_version = '>= 2.3.0'
ce89f9ed 19
0ab4d181 20 s.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r{^(lib/|(LICENSE|README.md)$)}) }
ce89f9ed 21 s.extra_rdoc_files = ['LICENSE', 'README.md']
0ab4d181 22 s.require_paths = ['lib']
9c1df047 23 s.requirements << 'hlint (in PATH)'
ce89f9ed 24
6bc6a0db 25 s.add_dependency('pronto', '~> 0.10.0')
0ab4d181 26 s.add_development_dependency('byebug', '>= 9')
ce9820e0 27 s.add_development_dependency('rake', '>= 11.0', '< 13')
b338a7ad 28 s.add_development_dependency('rspec', '~> 3.4')
ce89f9ed 29end