-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmilight-v6.gemspec
27 lines (22 loc) · 960 Bytes
/
milight-v6.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
# frozen_string_literal: true
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "milight/v6/version"
Gem::Specification.new do |spec|
spec.name = "milight-v6"
spec.version = Milight::V6::VERSION
spec.authors = ["Peter Postma"]
spec.email = ["peter.postma@gmail.com"]
spec.summary = "Ruby API for the Milight Wifi Bridge v6"
spec.description = "Ruby API for the Milight Wifi Bridge (or Wifi iBOX controller) version 6."
spec.homepage = "https://github.com/ppostma/milight-v6-api"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.executables = ["milight"]
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", "~> 2.0"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "rspec", "~> 3.0"
end