-
Notifications
You must be signed in to change notification settings - Fork 8
/
io_monitor.gemspec
37 lines (29 loc) · 1.2 KB
/
io_monitor.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
30
31
32
33
34
35
36
37
# frozen_string_literal: true
require_relative "lib/io_monitor/version"
Gem::Specification.new do |spec|
spec.name = "io_monitor"
spec.version = IoMonitor::VERSION
spec.authors = ["baygeldin", "prog-supdex", "maxshend", "DmitryTsepelev"]
spec.email = ["[email protected]"]
spec.homepage = "https://github.com/DmitryTsepelev/io_monitor"
spec.summary = "A gem that helps to detect potential memory bloats"
spec.license = "MIT"
spec.metadata = {
"bug_tracker_uri" => "https://github.com/DmitryTsepelev/io_monitor/issues",
"changelog_uri" => "https://github.com/DmitryTsepelev/io_monitor/blob/master/CHANGELOG.md",
"documentation_uri" => "https://github.com/DmitryTsepelev/io_monitor/blob/master/README.md",
"homepage_uri" => "https://github.com/DmitryTsepelev/io_monitor",
"source_code_uri" => "https://github.com/DmitryTsepelev/io_monitor"
}
spec.files = [
Dir.glob("lib/**/*"),
"README.md",
"CHANGELOG.md",
"LICENSE.txt"
].flatten
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.7.0"
spec.add_dependency "rails", ">= 6.1"
spec.add_development_dependency "redis", ">= 4.0"
spec.add_development_dependency "prometheus-client"
end