nnq 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
metadata ADDED
@@ -0,0 +1,112 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: nnq
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.0
5
+ platform: ruby
6
+ authors:
7
+ - Patrik Wenger
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: async
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - "~>"
17
+ - !ruby/object:Gem::Version
18
+ version: '2.38'
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - "~>"
24
+ - !ruby/object:Gem::Version
25
+ version: '2.38'
26
+ - !ruby/object:Gem::Dependency
27
+ name: io-stream
28
+ requirement: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - "~>"
31
+ - !ruby/object:Gem::Version
32
+ version: '0.11'
33
+ type: :runtime
34
+ prerelease: false
35
+ version_requirements: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '0.11'
40
+ - !ruby/object:Gem::Dependency
41
+ name: protocol-sp
42
+ requirement: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: '0.1'
47
+ type: :runtime
48
+ prerelease: false
49
+ version_requirements: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: '0.1'
54
+ description: Pure Ruby implementation of nanomsg's Scalability Protocols (SP) on top
55
+ of async + io-stream. No HWM, opportunistic batching, wire-compatible with libnng
56
+ over inproc/ipc/tcp.
57
+ email:
58
+ - paddor@gmail.com
59
+ executables: []
60
+ extensions: []
61
+ extra_rdoc_files: []
62
+ files:
63
+ - CHANGELOG.md
64
+ - LICENSE
65
+ - README.md
66
+ - lib/nnq.rb
67
+ - lib/nnq/connection.rb
68
+ - lib/nnq/engine.rb
69
+ - lib/nnq/engine/connection_lifecycle.rb
70
+ - lib/nnq/engine/socket_lifecycle.rb
71
+ - lib/nnq/error.rb
72
+ - lib/nnq/options.rb
73
+ - lib/nnq/pair.rb
74
+ - lib/nnq/pub_sub.rb
75
+ - lib/nnq/push_pull.rb
76
+ - lib/nnq/reactor.rb
77
+ - lib/nnq/req_rep.rb
78
+ - lib/nnq/routing/pair.rb
79
+ - lib/nnq/routing/pub.rb
80
+ - lib/nnq/routing/pull.rb
81
+ - lib/nnq/routing/push.rb
82
+ - lib/nnq/routing/rep.rb
83
+ - lib/nnq/routing/req.rb
84
+ - lib/nnq/routing/send_pump.rb
85
+ - lib/nnq/routing/sub.rb
86
+ - lib/nnq/socket.rb
87
+ - lib/nnq/transport/inproc.rb
88
+ - lib/nnq/transport/ipc.rb
89
+ - lib/nnq/transport/tcp.rb
90
+ - lib/nnq/version.rb
91
+ homepage: https://github.com/paddor/nnq
92
+ licenses:
93
+ - ISC
94
+ metadata: {}
95
+ rdoc_options: []
96
+ require_paths:
97
+ - lib
98
+ required_ruby_version: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - ">="
101
+ - !ruby/object:Gem::Version
102
+ version: '4.0'
103
+ required_rubygems_version: !ruby/object:Gem::Requirement
104
+ requirements:
105
+ - - ">="
106
+ - !ruby/object:Gem::Version
107
+ version: '0'
108
+ requirements: []
109
+ rubygems_version: 4.0.6
110
+ specification_version: 4
111
+ summary: Pure Ruby NNG (Scalability Protocols) on Async
112
+ test_files: []