forked from Shopify/tapioca
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tapioca.gemspec
36 lines (27 loc) · 1.18 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", "Gemfile", "Rakefile"]
spec.metadata["allowed_push_host"] = "https://rubygems.org"
spec.add_dependency("bundler", ">= 1.17.3")
spec.add_dependency("pry", ">= 0.12.2")
spec.add_dependency("rbi")
spec.add_dependency("sorbet-static", ">= 0.4.4471")
spec.add_dependency("sorbet-runtime")
spec.add_dependency("spoom")
spec.add_dependency("thor", ">= 0.19.2")
spec.add_dependency("unparser")
spec.required_ruby_version = ">= 2.6"
end