aboutsummaryrefslogtreecommitdiffhomepage
path: root/pronto-hlint.gemspec
diff options
context:
space:
mode:
authorPaul Bonaud <paul.bonaud@fretlink.com>2019-04-13 16:38:04 +0200
committerPaul Bonaud <paul.bonaud@fretlink.com>2019-04-13 16:38:04 +0200
commit9c1df04756bd900c1ab61e98526ad6eaac8a7216 (patch)
treecf4048303525aa090d00d7a4a2977377cb6a99d1 /pronto-hlint.gemspec
parent83414e23d7f03a7a939655f51b81c0792fff616a (diff)
downloadpronto-hlint-9c1df04756bd900c1ab61e98526ad6eaac8a7216.tar.gz
pronto-hlint-9c1df04756bd900c1ab61e98526ad6eaac8a7216.tar.zst
pronto-hlint-9c1df04756bd900c1ab61e98526ad6eaac8a7216.zip
Welcom pronto-hlint! This is a whole rewrite of pronto-eslint_npm.
Forking the pronto-eslint_npm repository to build a runner for hlint haskell linter.
Diffstat (limited to 'pronto-hlint.gemspec')
-rw-r--r--pronto-hlint.gemspec29
1 files changed, 29 insertions, 0 deletions
diff --git a/pronto-hlint.gemspec b/pronto-hlint.gemspec
new file mode 100644
index 0000000..2d56792
--- /dev/null
+++ b/pronto-hlint.gemspec
@@ -0,0 +1,29 @@
1# frozen_string_literal: true
2
3$LOAD_PATH.push File.expand_path('lib', __dir__)
4require 'pronto/hlint/version'
5
6Gem::Specification.new do |s|
7 s.name = 'pronto-hlint'
8 s.version = Pronto::Hlint::VERSION
9 s.platform = Gem::Platform::RUBY
10 s.authors = ['Paul Bonaud']
11 s.email = 'paul.bonaud@fretlink.com'
12 s.homepage = 'https://github.com/fretlink/pronto-hlint'
13 s.summary = <<-EOF
14 Pronto runner for Hlint, pluggable linting utility for Haskell
15 EOF
16
17 s.licenses = ['MIT']
18 s.required_ruby_version = '>= 2.3.0'
19
20 s.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r{^(lib/|(LICENSE|README.md)$)}) }
21 s.extra_rdoc_files = ['LICENSE', 'README.md']
22 s.require_paths = ['lib']
23 s.requirements << 'hlint (in PATH)'
24
25 s.add_dependency('pronto', '~> 0.10.0')
26 s.add_development_dependency('byebug', '>= 9')
27 s.add_development_dependency('rake', '>= 11.0', '< 13')
28 s.add_development_dependency('rspec', '~> 3.4')
29end