-
Notifications
You must be signed in to change notification settings - Fork 1
/
em-systemcommand.gemspec
26 lines (22 loc) · 1.05 KB
/
em-systemcommand.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/em-systemcommand/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Arthur Andersen"]
gem.email = ["[email protected]"]
gem.description = %q{`em-systemcommand` is a simple abstraction for invoking system commands and handling their output easily with eventmachine.}
gem.summary = %q{Sweeter popen3 for EventMachine.}
gem.homepage = "http://leoc.github.com/em-systemcommand/"
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 = "em-systemcommand"
gem.require_paths = ["lib"]
gem.version = Em::Systemcommand::VERSION
gem.add_development_dependency 'rspec'
gem.add_development_dependency 'guard'
gem.add_development_dependency 'guard-rspec'
gem.add_development_dependency 'rake'
gem.add_dependency 'posix-spawn'
gem.add_dependency 'escape'
gem.add_dependency 'eventmachine'
end