-
-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathbalboa_worldwide_app.gemspec
More file actions
30 lines (25 loc) · 948 Bytes
/
Copy pathbalboa_worldwide_app.gemspec
File metadata and controls
30 lines (25 loc) · 948 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
30
# frozen_string_literal: true
require_relative "lib/bwa/version"
Gem::Specification.new do |s|
s.name = "balboa_worldwide_app"
s.version = BWA::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Cody Cutrer"]
s.email = "cody@cutrer.us"
s.homepage = "https://github.com/ccutrer/balboa_worldwide_app"
s.summary = "Library for communication with Balboa Water Group's WiFi module or RS-485"
s.license = "MIT"
s.metadata = {
"rubygems_mfa_required" => "true"
}
s.bindir = "exe"
s.executables = Dir["exe/*"].map { |f| File.basename(f) }
s.files = Dir["{exe,lib}/**/*"]
s.required_ruby_version = ">= 3.2"
s.add_dependency "ccutrer-serialport", "~> 1.0"
s.add_dependency "digest-crc", "~> 0.4"
s.add_dependency "mqtt-homeassistant", ">= 1.0.3"
s.add_dependency "mqtt-homie-homeassistant", "~> 1.0", ">= 1.0.5"
s.add_dependency "net-telnet-rfc2217", "~> 1.0"
s.add_dependency "sd_notify", "~> 0.1.1"
end