-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathboba.gemspec
32 lines (24 loc) · 1.02 KB
/
boba.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
# frozen_string_literal: true
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "boba/version"
Gem::Specification.new do |spec|
spec.name = "boba"
spec.version = Boba::VERSION
spec.summary = "Custom Tapioca compilers"
spec.authors = ["Angellist"]
spec.email = ["[email protected]"]
spec.homepage = "https://github.com/angellist/boba"
spec.license = "MIT"
spec.files = Dir.glob("lib/**/*.rb") + ["README.md", "LICENSE"]
spec.metadata = {
"bug_tracker_uri" => "https://github.com/angellist/boba/issues",
"changelog_uri" => "https://github.com/angellist/boba/blob/#{Boba::VERSION}/History.md",
"homepage_uri" => spec.homepage,
"source_code_uri" => "https://github.com/angellist/boba/tree/#{Boba::VERSION}",
"rubygems_mfa_required" => "true",
}
spec.required_ruby_version = ">= 3.0.0"
spec.add_dependency("sorbet-static-and-runtime", "~> 0.5")
spec.add_dependency("tapioca", "<= 0.16.7")
end