forked from turboladen/playful
-
Notifications
You must be signed in to change notification settings - Fork 0
/
frisky.gemspec
25 lines (22 loc) · 936 Bytes
/
frisky.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'frisky/version'
Gem::Specification.new do |s|
s.name = 'frisky'
s.version = Frisky::VERSION
s.author = 'Jon Frisby'
s.email = '[email protected]'
s.homepage = 'http://github.com/MrJoy/frisky'
s.summary = 'Use me to build a UPnP app!'
s.description = %q{frisky provides the tools you need to build an app that runs
in a UPnP environment.}
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.extra_rdoc_files = %w(History.md README.md LICENSE.md)
s.require_paths = ['lib']
s.required_ruby_version = Gem::Requirement.new('>=1.9.1')
s.add_dependency 'eventmachine', '>=1.0.0'
s.add_dependency 'em-synchrony'
s.add_dependency 'log_switch', '~>1.0.0'
end