-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathrbi.gemspec
More file actions
31 lines (23 loc) · 779 Bytes
/
rbi.gemspec
File metadata and controls
31 lines (23 loc) · 779 Bytes
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
# typed: strict
# frozen_string_literal: true
require_relative "lib/rbi/version"
Gem::Specification.new do |spec|
spec.name = "rbi"
spec.version = RBI::VERSION
spec.authors = ["Alexandre Terrasa"]
spec.email = ["ruby@shopify.com"]
spec.summary = "RBI generation framework"
spec.homepage = "https://github.com/Shopify/rbi"
spec.license = "MIT"
spec.metadata["allowed_push_host"] = "https://rubygems.org"
spec.require_paths = ["lib"]
spec.files = Dir.glob("lib/**/*.rb") + Dir.glob("rbi/**/*.rbi") + [
"README.md",
"Gemfile",
"Rakefile",
"rbi/rbi.rbi",
]
spec.add_dependency("prism", "~> 1.0")
spec.add_dependency("rbs", ">= 4.0.1")
spec.required_ruby_version = ">= 3.2"
end