diff options
Diffstat (limited to 'pronto-hlint.gemspec')
-rw-r--r-- | pronto-hlint.gemspec | 29 |
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__) | ||
4 | require 'pronto/hlint/version' | ||
5 | |||
6 | Gem::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') | ||
29 | end | ||