forked from Shopify/tapioca
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tapioca.gemspec
36 lines (27 loc) · 1.23 KB
/
tapioca.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
# 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("bundler", ">= 2.2.25")
spec.add_dependency("netrc", ">= 0.11.0")
spec.add_dependency("parallel", ">= 1.21.0")
spec.add_dependency("rbi", ">= 0.1.4", "< 0.2")
spec.add_dependency("sorbet-static-and-runtime", ">= 0.5.11087")
spec.add_dependency("spoom", ">= 1.2.0")
spec.add_dependency("thor", ">= 1.2.0")
spec.add_dependency("yard-sorbet")
spec.required_ruby_version = ">= 3.0"
end