-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfiber-profiler.gemspec
More file actions
29 lines (20 loc) · 803 Bytes
/
fiber-profiler.gemspec
File metadata and controls
29 lines (20 loc) · 803 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
# frozen_string_literal: true
require_relative "lib/fiber/profiler/version"
Gem::Specification.new do |spec|
spec.name = "fiber-profiler"
spec.version = Fiber::Profiler::VERSION
spec.summary = "A fiber stall profiler."
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/fiber-profiler"
spec.metadata = {
"documentation_uri" => "https://socketry.github.io/fiber-profiler/",
"source_code_uri" => "https://github.com/socketry/fiber-profiler.git",
}
spec.files = Dir["{bake,context,ext,lib}/**/*", "*.md", base: __dir__]
spec.require_paths = ["lib"]
spec.extensions = ["ext/extconf.rb"]
spec.required_ruby_version = ">= 3.3"
end