-
Notifications
You must be signed in to change notification settings - Fork 16
/
rubyhome.gemspec
45 lines (41 loc) · 1.71 KB
/
rubyhome.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
38
39
40
41
42
43
44
45
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "ruby_home/version"
Gem::Specification.new do |spec|
spec.name = "ruby_home"
spec.version = RubyHome::VERSION
spec.authors = ["Karl Entwistle"]
spec.email = ["karl@entwistle.com"]
spec.summary = "Ruby HomeKit support"
spec.description = <<~DESCRIPTION
RubyHome is a lightweight service you can run on your home network that
emulates the iOS HomeKit API. It supports community contributed plugins, which
are modules that provide a bridge from HomeKit to various 3rd-party APIs
provided by manufacturers of smart home devices.
DESCRIPTION
spec.homepage = "https://github.com/karlentwistle/ruby_home"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.bindir = "bin"
spec.executables = ["ruby_home"]
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 3.0"
spec.add_dependency "dnssd", "~> 3.0"
spec.add_dependency "facets", "~> 3.1"
spec.add_dependency "hkdf", "~> 1.0.0"
spec.add_dependency "oj", "~> 3.10"
spec.add_dependency "rbnacl", "~> 7.1"
spec.add_dependency "ruby_home-srp", "~> 1.3"
spec.add_dependency "ruby_home-tlv", "~> 0.1"
spec.add_dependency "sinatra", "~> 3.0"
spec.add_dependency "webrick", "~> 1.7"
spec.add_dependency "wisper", "~> 2.0"
spec.add_development_dependency "byebug", "~> 11.0"
spec.add_development_dependency "plist", "~> 3.4"
spec.add_development_dependency "rack-test", "~> 2.1.0"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency "standard", "~> 1.0"
end