em-zmq-tp10 0.1.7

Sign up to get free protection for your applications and to get access to all the features.
metadata ADDED
@@ -0,0 +1,108 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: em-zmq-tp10
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.7
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Sokolov Yura 'funny-falcon'
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-07-31 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: eventmachine
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: '0'
30
+ - !ruby/object:Gem::Dependency
31
+ name: ffi-rzmq
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ type: :development
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ description: Implementation of ZMQ2.x transport protocol - ZMTP1.0
47
+ email:
48
+ - funny.falcon@gmail.com
49
+ executables: []
50
+ extensions: []
51
+ extra_rdoc_files: []
52
+ files:
53
+ - .gitignore
54
+ - Gemfile
55
+ - LICENSE
56
+ - README.md
57
+ - Rakefile
58
+ - em-zmq-tp10.gemspec
59
+ - lib/em-zmq-tp10.rb
60
+ - lib/em/protocols/zmq2.rb
61
+ - lib/em/protocols/zmq2/connection.rb
62
+ - lib/em/protocols/zmq2/dealer.rb
63
+ - lib/em/protocols/zmq2/inproc.rb
64
+ - lib/em/protocols/zmq2/pub_sub.rb
65
+ - lib/em/protocols/zmq2/queue_per_peer.rb
66
+ - lib/em/protocols/zmq2/rep.rb
67
+ - lib/em/protocols/zmq2/req.rb
68
+ - lib/em/protocols/zmq2/router.rb
69
+ - lib/em/protocols/zmq2/socket.rb
70
+ - lib/em/protocols/zmq2/socket_connection.rb
71
+ - lib/em/protocols/zmq2/version.rb
72
+ - lib/em/protocols/zmq_tp10.rb
73
+ - tests/helper.rb
74
+ - tests/run_all.rb
75
+ - tests/test_dealer.rb
76
+ - tests/test_inproc.rb
77
+ - tests/test_pub_sub.rb
78
+ - tests/test_reconnect.rb
79
+ - tests/test_rep.rb
80
+ - tests/test_req.rb
81
+ - tests/test_router.rb
82
+ homepage: https://github.com/funny-falcon/em-zmq-tp10
83
+ licenses: []
84
+ post_install_message:
85
+ rdoc_options: []
86
+ require_paths:
87
+ - lib
88
+ required_ruby_version: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ! '>='
92
+ - !ruby/object:Gem::Version
93
+ version: 1.9.2
94
+ required_rubygems_version: !ruby/object:Gem::Requirement
95
+ none: false
96
+ requirements:
97
+ - - ! '>='
98
+ - !ruby/object:Gem::Version
99
+ version: '0'
100
+ requirements: []
101
+ rubyforge_project:
102
+ rubygems_version: 1.8.24
103
+ signing_key:
104
+ specification_version: 3
105
+ summary: Implementation of ZMQ2.1 transport protocol and main socket types using EventMachine
106
+ for managing TCP/UNIX connections, doing nonblocking writes and calling callback
107
+ on incoming messages.
108
+ test_files: []