-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathbuild-dependency.gemspec
More file actions
25 lines (18 loc) · 792 Bytes
/
Copy pathbuild-dependency.gemspec
File metadata and controls
25 lines (18 loc) · 792 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
# frozen_string_literal: true
require_relative "lib/build/dependency/version"
Gem::Specification.new do |spec|
spec.name = "build-dependency"
spec.version = Build::Dependency::VERSION
spec.summary = "A set of data structures and algorithms for dependency resolution."
spec.authors = ["Samuel Williams"]
spec.license = "MIT"
spec.cert_chain = ["release.cert"]
spec.signing_key = File.expand_path("~/.gem/release.pem")
spec.metadata = {
"documentation_uri" => "https://ioquatix.github.io/build-dependency/",
"funding_uri" => "https://github.com/sponsors/ioquatix",
"source_code_uri" => "https://github.com/ioquatix/build-dependency",
}
spec.files = Dir.glob(["{lib,test}/**/*", "*.md"], File::FNM_DOTMATCH, base: __dir__)
spec.required_ruby_version = ">= 3.3"
end