-
Notifications
You must be signed in to change notification settings - Fork 0
/
smartware.gemspec
31 lines (28 loc) · 1.21 KB
/
smartware.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'smartware/version'
Gem::Specification.new do |gem|
gem.name = "smartware"
gem.version = Smartware::VERSION
gem.authors = ["Evgeni Sudarchikov", "Boris Staal", 'Sergey Gridasov']
gem.description = %q{Smartware is the Smartkiosk hardware control daemon}
gem.summary = gem.description
gem.homepage = "https://github.com/smartkiosk/smartware"
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.require_paths = ["lib"]
gem.add_dependency 'smartkiosk-common', '>= 0.0.2'
gem.add_dependency 'serialport'
gem.add_dependency 'cmux', '>= 0.0.2'
gem.add_dependency 'trollop'
gem.add_dependency 'activesupport'
gem.add_dependency 'redcarpet'
gem.add_dependency 'digest-crc'
gem.add_dependency 'eventmachine'
gem.add_dependency 'chunky_png'
gem.add_dependency 'oily_png'
gem.add_dependency 'redis'
end