-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathlaunchpad.gemspec
34 lines (29 loc) · 1.27 KB
/
launchpad.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "launchpad/version"
Gem::Specification.new do |s|
s.name = "launchpad"
s.version = Launchpad::VERSION
s.authors = ["Thomas Jachmann"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/thomasjachmann/launchpad"
s.summary = %q{A gem for accessing novation's launchpad programmatically and easily.}
s.description = %q{This gem provides an interface to access novation's launchpad programmatically. LEDs can be lighted and button presses can be evaluated using launchpad's MIDI input/output.}
s.rubyforge_project = "launchpad"
s.add_dependency "portmidi", ">= 0.0.6"
s.add_dependency "ffi"
s.add_development_dependency "rake"
if RUBY_VERSION < "1.9"
s.add_development_dependency "minitest"
# s.add_development_dependency "ruby-debug"
else
s.add_development_dependency "minitest-reporters"
# s.add_development_dependency "debugger"
end
s.add_development_dependency "mocha"
# s.has_rdoc = true
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end