forked from soffes/hue
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsparkle_motion.gemspec
44 lines (42 loc) · 2 KB
/
sparkle_motion.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
# -*- encoding: utf-8 -*-
$LOAD_PATH.push File.expand_path("../lib", __FILE__)
require "sparkle_motion/version"
Gem::Specification.new do |s|
s.name = "sparkle_motion"
s.version = SparkleMotion::VERSION
s.author = "Jon Frisby"
s.email = "[email protected]"
s.homepage = "http://github.com/MrJoy/sparkle_motion"
s.description = "A system for generative event lighting using Philips Hue controlled"\
" from a Novation Launchpad"
s.summary = "Generative event lighting using Philips Hue, and Novation Launchpad"
raw_file_list = `git ls-files`.split("\n")
blacklist = %r{
\A
(\..*
|Gemfile.*
|notes/.*
|tasks/.*
|tools/.*
|examples/.*
|tmp/.*
|Rakefile
|.*\.sublime-project
)
\z
}x
s.files = raw_file_list.reject { |fname| fname =~ blacklist }
s.test_files = `git ls-files -- {spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
s.extra_rdoc_files = %w(CHANGELOG.md README.md LICENSE)
s.require_paths = ["lib"]
s.required_ruby_version = Gem::Requirement.new(">= 2.2.0")
s.add_dependency "oj", "~> 2.12.13"
s.add_dependency "curb", "~> 0.8.8"
s.add_dependency "perlin_noise", "~> 0.1.2"
s.add_dependency "logger-better", "~> 0.2.1"
s.add_dependency "frisky", "~> 0.1.1"
s.add_dependency "surface_master", "~> 0.6.0"
# s.add_dependency "ruby-fftw3", "~> 0.4.2"
# s.add_dependency "coreaudio", "~> 0.0.11"
end