Sha256: 64b3cc25025e0cf625cdbf95c78a881980232985f7b7aba56897b0782d5f307a

Contents?: true

Size: 960 Bytes

Versions: 1

Compression:

Stored size: 960 Bytes

Contents

# 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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
milight-v6-0.2.0 milight-v6.gemspec