-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathem-zmq-tp10.gemspec
23 lines (21 loc) · 1.02 KB
/
em-zmq-tp10.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/em/protocols/zmq2/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Sokolov Yura 'funny-falcon'"]
gem.email = ["[email protected]"]
gem.description = %q{Implementation of ZMQ2.x transport protocol - ZMTP1.0}
gem.summary = %q{
Implementation of ZMQ2.1 transport protocol and main socket types using EventMachine
for managing TCP/UNIX connections, doing nonblocking writes and calling callback on
incoming messages.}
gem.homepage = "https://github.com/funny-falcon/em-zmq-tp10"
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-zmq-tp10"
gem.require_paths = ["lib"]
gem.version = EventMachine::Protocols::Zmq2::VERSION
gem.add_runtime_dependency 'eventmachine'
gem.add_development_dependency 'ffi-rzmq'
gem.required_ruby_version = '>= 1.9.2'
end