-
Notifications
You must be signed in to change notification settings - Fork 154
Expand file tree
/
Copy pathtapioca.gemspec
More file actions
44 lines (34 loc) · 1.65 KB
/
tapioca.gemspec
File metadata and controls
44 lines (34 loc) · 1.65 KB
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
# frozen_string_literal: true
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "tapioca/version"
Gem::Specification.new do |spec|
spec.name = "tapioca"
spec.version = Tapioca::VERSION
spec.authors = ["Ufuk Kayserilioglu", "Alan Wu", "Alexandre Terrasa", "Peter Zhu"]
spec.email = ["[email protected]"]
spec.summary = "A Ruby Interface file generator for gems, core types and the Ruby standard library"
spec.homepage = "https://github.com/Shopify/tapioca"
spec.license = "MIT"
spec.bindir = "exe"
spec.executables = ["tapioca"]
spec.require_paths = ["lib"]
spec.files = Dir.glob("lib/**/*.rb") + ["README.md", "LICENSE.txt"]
spec.metadata["allowed_push_host"] = "https://rubygems.org"
spec.add_dependency("benchmark")
spec.add_dependency("bundler", ">= 2.2.25")
spec.add_dependency("netrc", ">= 0.11.0")
spec.add_dependency("parallel", ">= 1.21.0")
spec.add_dependency("require-hooks", ">= 0.2.2")
spec.add_dependency("sorbet-static-and-runtime", ">= 0.5.11087")
spec.add_dependency("thor", ">= 1.2.0")
spec.add_dependency("yard-sorbet")
# Tapioca requires a specific minimum versions of RBI and Spoom
# to ensure that the RBS comments are translated correctly.
spec.add_dependency("rbi", ">= 0.3.7")
spec.add_dependency("spoom", ">= 1.7.9")
# We need this to be ported to the RBS 4.0 branch before we can remove this dependency:
# https://github.com/ruby/rbs/pull/2601
spec.add_dependency("tsort") # Until rbs supports Ruby 4.0 with tsort extracted to bundled gems
spec.required_ruby_version = ">= 3.2"
end