-
Notifications
You must be signed in to change notification settings - Fork 84
/
steep.gemspec
54 lines (45 loc) · 2.19 KB
/
steep.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'steep/version'
Gem::Specification.new do |spec|
spec.name = "steep"
spec.version = Steep::VERSION
spec.authors = ["Soutaro Matsumoto"]
spec.email = ["[email protected]"]
spec.summary = %q{Gradual Typing for Ruby}
spec.description = %q{Gradual Typing for Ruby}
spec.homepage = "https://github.com/soutaro/steep"
spec.license = 'MIT'
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/soutaro/steep"
spec.metadata["changelog_uri"] = "https://github.com/soutaro/steep/blob/master/CHANGELOG.md"
skip_dirs = %w(test spec features smoke sig gemfile_steep .github .vscode)
skip_files = %w(Gemfile Gemfile.lock rbs_collection.steep.yaml rbs_collection.steep.lock.yaml)
spec.files = `git ls-files -z`.split("\x0").reject {|f|
skip_dirs.any? {|dir| f.start_with?(dir + File::SEPARATOR) } || skip_files.include?(f)
}
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
if false
# This is to let dependabot use 3.3, instead of 3.1.x.
# They use `required_ruby_version=` method to detect the Ruby version they use.
spec.required_ruby_version = ">= 3.3.0"
end
spec.required_ruby_version = '>= 3.1.0'
spec.add_runtime_dependency "parser", ">= 3.1"
spec.add_runtime_dependency "activesupport", ">= 5.1"
spec.add_runtime_dependency "rainbow", ">= 2.2.2", "< 4.0"
spec.add_runtime_dependency "listen", "~> 3.0"
spec.add_runtime_dependency "language_server-protocol", ">= 3.15", "< 4.0"
spec.add_runtime_dependency "rbs", "~> 3.7.0.dev"
spec.add_runtime_dependency "concurrent-ruby", ">= 1.1.10"
spec.add_runtime_dependency "terminal-table", ">= 2", "< 4"
spec.add_runtime_dependency "securerandom", ">= 0.1"
spec.add_runtime_dependency "json", ">= 2.1.0"
spec.add_runtime_dependency "logger", ">= 1.3.0"
spec.add_runtime_dependency "fileutils", ">= 1.1.0"
spec.add_runtime_dependency "strscan", ">= 1.0.0"
spec.add_runtime_dependency "csv", ">= 3.0.9"
end