-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtoolbox.gemspec
More file actions
26 lines (18 loc) · 703 Bytes
/
toolbox.gemspec
File metadata and controls
26 lines (18 loc) · 703 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
# frozen_string_literal: true
require_relative "lib/toolbox/version"
Gem::Specification.new do |spec|
spec.name = "toolbox"
spec.version = Toolbox::VERSION
spec.summary = "Ruby debugging toolbox for GDB and LLDB"
spec.authors = ["Samuel Williams"]
spec.license = "MIT"
spec.cert_chain = ["release.cert"]
spec.signing_key = File.expand_path("~/.gem/release.pem")
spec.homepage = "https://github.com/socketry/toolbox"
spec.metadata = {
"documentation_uri" => "https://socketry.github.io/toolbox/",
"source_code_uri" => "https://github.com/socketry/toolbox",
}
spec.files = Dir["{bake,context,data,lib}/**/*", "*.md", base: __dir__]
spec.required_ruby_version = ">= 3.3"
end