forked from tenderlove/sphero
-
Notifications
You must be signed in to change notification settings - Fork 16
/
sphero.gemspec
21 lines (18 loc) · 915 Bytes
/
sphero.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
Gem::Specification.new do |gem|
gem.authors = ["The Hybrid Group"]
gem.email = ["[email protected]"]
gem.description = "A ruby gem for controlling your Sphero ball. Sends commands over the TTY\nprovided by the bluetooth connection."
gem.summary = "A ruby gem for controlling your Sphero ball"
gem.homepage = "http://github.com/hybridgroup/sphero"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "sphero"
gem.require_paths = ["lib"]
gem.version = "1.5.3"
gem.add_development_dependency "rake", "~>10.0.4"
gem.add_development_dependency "mocha", "~>0.13.3"
gem.add_development_dependency "minitest", "~>5.0.8"
gem.add_runtime_dependency "rubyserial", ">=0.2.2"
end