forked from palkan/require-profiler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequire-profiler.gemspec
More file actions
33 lines (26 loc) · 1.18 KB
/
Copy pathrequire-profiler.gemspec
File metadata and controls
33 lines (26 loc) · 1.18 KB
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
33
# frozen_string_literal: true
require_relative "lib/require_profiler/version"
Gem::Specification.new do |s|
s.name = "require-profiler"
s.version = RequireProfiler::VERSION
s.authors = ["Vladimir Dementyev"]
s.email = ["Vladimir Dementyev"]
s.homepage = "https://github.com/palkan/require-profiler"
s.summary = "Profile Ruby #require/#load/etc calls"
s.description = "Profile Ruby #require/#load/etc calls"
s.metadata = {
"bug_tracker_uri" => "https://github.com/palkan/require-profiler/issues",
"changelog_uri" => "https://github.com/palkan/require-profiler/blob/master/CHANGELOG.md",
"documentation_uri" => "https://github.com/palkan/require-profiler",
"homepage_uri" => "https://github.com/palkan/require-profiler",
"source_code_uri" => "https://github.com/palkan/require-profiler"
}
s.license = "MIT"
s.files = Dir.glob("lib/**/*") + Dir.glob("bin/**/*") + %w[README.md LICENSE.txt CHANGELOG.md]
s.require_paths = ["lib"]
s.required_ruby_version = ">= 3.1"
s.add_dependency "require-hooks", "~> 0.3"
s.add_development_dependency "bundler", ">= 1.15"
s.add_development_dependency "rake", ">= 13.0"
s.add_development_dependency "rspec", ">= 3.9"
end