-
Notifications
You must be signed in to change notification settings - Fork 0
/
irtoy.gemspec
22 lines (19 loc) · 873 Bytes
/
irtoy.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'irtoy/version'
Gem::Specification.new do |s|
s.name = 'irtoy'
s.version = IRToy::VERSION
s.date = '2015-09-07'
s.summary = 'A gem for transmitting and receiving infrared signals from an IR Toy'
s.description = 'A gem for transmitting and receiving infrared signals from an IR Toy. Heavily inspiered by https://github.com/crleblanc/PyIrToy and https://github.com/djellemah/irtoy-hexbug-spider .'
s.authors = ['Thorsten Eckel']
s.email = '[email protected]'
s.files = ['lib/hola.rb']
s.homepage = 'https://github.com/thorsteneckel/irtoy'
s.platform = Gem::Platform::RUBY
s.licenses = ['GPL-3']
# files
s.files = `git ls-files`.split("\n")
s.require_paths = ['lib']
s.add_runtime_dependency 'rubyserial', '~> 0.2.4', '~> 0.2.4'
end