-
Notifications
You must be signed in to change notification settings - Fork 5
/
pronto-tslint_npm.gemspec
29 lines (24 loc) · 998 Bytes
/
pronto-tslint_npm.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# -*- encoding: utf-8 -*-
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'pronto/tslint_npm/version'
Gem::Specification.new do |s|
s.name = 'pronto-tslint_npm'
s.version = Pronto::TSLintNpmVersion::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Eddie Prislac', 'Mindaugas Mozūras']
s.email = 'edward.prislac@gmail.com'
s.homepage = 'https://github.com/eprislac/pronto-tslint_npm'
s.summary = <<-EOF
Pronto runner for TSLint, pluggable linting utility for TypeScript
EOF
s.licenses = ['MIT']
s.required_ruby_version = '>= 2.0.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 << 'tslint (in PATH)'
s.add_dependency('pronto', '~> 0.10.0')
s.add_development_dependency('rake', '>= 11.0', '< 13')
s.add_development_dependency('rspec', '~> 3.4')
s.add_development_dependency('byebug', '>= 9')
end