-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdev_env_monitor.gemspec
More file actions
23 lines (19 loc) · 890 Bytes
/
dev_env_monitor.gemspec
File metadata and controls
23 lines (19 loc) · 890 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = "dev_env_monitor"
spec.version = "0.1.0"
spec.authors = ["d_ogura"]
# spec.email = ["your.email@example.com"]
spec.summary = %q{DevEnvMonitor is a tool to monitor development environment resources in real-time.}
spec.description = %q{DevEnvMonitor monitors CPU usage, memory usage, disk usage, and SQL queries in real-time, providing a web interface for viewing the data.}
# spec.homepage = "http://hogehogehogehoge.com/dev_env_monitor"
spec.license = "MIT"
spec.files = Dir["lib/**/*.rb"]
spec.require_paths = ["lib"]
spec.add_dependency "sinatra"
spec.add_dependency "sinatra-websocket"
spec.add_dependency "thin"
spec.add_dependency "sys-proctable"
spec.add_dependency "sys-cpu"
spec.add_dependency "sys-filesystem"
end