-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsinged.gemspec
29 lines (24 loc) · 1010 Bytes
/
singed.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
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = "singed"
spec.version = "0.2.2"
spec.license = "MIT"
spec.authors = ["Josh Nichols"]
spec.email = ["[email protected]"]
spec.summary = "Quick and easy way to get flamegraphs from a specific part of your code base"
spec.required_ruby_version = ">= 2.7.0"
spec.homepage = "https://github.com/rubyatscale/singed"
spec.metadata = {
"source_code_uri" => "https://github.com/rubyatscale/singed",
"bug_tracker_uri" => "https://github.com/rubyatscale/singed/issues",
"homepage_uri" => "https://github.com/rubyatscale/singed"
}
spec.files = Dir["README.md", "*.gemspec", "lib/**/*", "exe/**/*"]
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_dependency "colorize"
spec.add_dependency "stackprof", ">= 0.2.13"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "rspec"
end