From 9c1df04756bd900c1ab61e98526ad6eaac8a7216 Mon Sep 17 00:00:00 2001 From: Paul Bonaud Date: Sat, 13 Apr 2019 16:38:04 +0200 Subject: 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. --- pronto-hlint.gemspec | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 pronto-hlint.gemspec (limited to 'pronto-hlint.gemspec') 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 @@ +# frozen_string_literal: true + +$LOAD_PATH.push File.expand_path('lib', __dir__) +require 'pronto/hlint/version' + +Gem::Specification.new do |s| + s.name = 'pronto-hlint' + s.version = Pronto::Hlint::VERSION + s.platform = Gem::Platform::RUBY + s.authors = ['Paul Bonaud'] + s.email = 'paul.bonaud@fretlink.com' + s.homepage = 'https://github.com/fretlink/pronto-hlint' + s.summary = <<-EOF + Pronto runner for Hlint, pluggable linting utility for Haskell + EOF + + s.licenses = ['MIT'] + s.required_ruby_version = '>= 2.3.0' + + s.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r{^(lib/|(LICENSE|README.md)$)}) } + s.extra_rdoc_files = ['LICENSE', 'README.md'] + s.require_paths = ['lib'] + s.requirements << 'hlint (in PATH)' + + s.add_dependency('pronto', '~> 0.10.0') + s.add_development_dependency('byebug', '>= 9') + s.add_development_dependency('rake', '>= 11.0', '< 13') + s.add_development_dependency('rspec', '~> 3.4') +end -- cgit v1.2.3