-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsmartguard.gemspec
27 lines (23 loc) · 1002 Bytes
/
smartguard.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'smartguard/version'
Gem::Specification.new do |gem|
gem.name = "smartguard"
gem.version = Smartguard::VERSION
gem.authors = ["Boris Staal", 'Sergey Gridasov']
gem.email = ["[email protected]", '[email protected]']
gem.description = %q{Smartguard is the Smartkiosk services control daemon}
gem.summary = gem.description
gem.homepage = "https://github.com/smartkiosk/smartguard"
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'
gem.add_dependency 'i18n'
gem.add_dependency 'activesupport'
gem.add_dependency 'trollop'
gem.add_dependency 'colored'
gem.add_development_dependency 'pry'
end