jrzmq 1.0.2 → 1.0.3.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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: accef30cb0aff8731de0b2e6dcf160c8ecdf0c39
4
+ data.tar.gz: 0b9eebb02a807672455e1b23365db0e7e4e48810
5
+ SHA512:
6
+ metadata.gz: a6bc7c659010233e0d09390781bc33ea13a0a42a902dba406cf2f25a147de2273881c527236f7ff2ee431f0680987bee47c4211263a069e0a7347cf106f75c2a
7
+ data.tar.gz: 44f7292d2d65c649a1fe02ded51c04397cdd271fb44449dd6172583b82a916bba3aedb64529c51a994c757df240249132aed3c652a21f0cdb608848cc5074ee8
data/Gemfile CHANGED
@@ -1,4 +1,4 @@
1
- source :rubygems
2
-
3
- # Specify your gem's dependencies in edn.gemspec
4
- gemspec
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in edn.gemspec
4
+ gemspec
data/LICENSE CHANGED
@@ -1,8 +1,8 @@
1
- license
2
- =======
3
-
4
- Same as [JeroMQ](https://github.com/zeromq/jeromq "JeroMQ"):
5
-
6
- [COPYING](https://github.com/zeromq/jeromq/blob/master/COPYING "COPYING")
7
-
8
- [COPYING.LESSER](https://github.com/zeromq/jeromq/blob/master/COPYING.LESSER "COPYING.LESSER")
1
+ license
2
+ =======
3
+
4
+ JRZMQ's code is MIT, but it relies upon [JeroMQ](https://github.com/zeromq/jeromq "JeroMQ") which has the following:
5
+
6
+ [COPYING](https://github.com/zeromq/jeromq/blob/master/COPYING "COPYING")
7
+
8
+ [COPYING.LESSER](https://github.com/zeromq/jeromq/blob/master/COPYING.LESSER "COPYING.LESSER")
data/README.md CHANGED
@@ -1,47 +1,47 @@
1
- jrzmq [![Build Status](https://secure.travis-ci.org/outcastgeek/jrzmq.png?branch=master)](http://travis-ci.org/outcastgeek/jrzmq)
2
- =====
3
- Provides JRuby Bindings to a Pure Java implementation of libzmq (ZeroMQ).
4
-
5
- Installation
6
- ============
7
-
8
- jruby -S gem install jrzmq
9
- gem "jrzmq", "~> 1.0.1"
10
-
11
- example
12
- =======
13
-
14
- require 'jrzmq'
15
-
16
- context = ZMQ::Context.new(1)
17
-
18
- puts "Opening connection for READ DOWNSTREAM"
19
- inbound = context.socket(ZMQ::UPSTREAM)
20
- inbound.bind("ipc://localconnection")
21
- inbound.set_receive_time_out 10
22
-
23
- puts "Opening connection for WRITE UPSTREAM"
24
- outbound = context.socket(ZMQ::DOWNSTREAM)
25
- outbound.connect("ipc://localconnection")
26
- outbound.set_send_time_out 10
27
-
28
- messages = %w{Hello World! QUIT}
29
-
30
- messages.each do |msg|
31
- outbound.send(msg)
32
- end
33
-
34
- loop do
35
- received_msg = inbound.recv_str
36
- puts "Received #{received_msg}"
37
- break if received_msg == "QUIT"
38
- end
39
-
40
- license
41
- =======
42
-
43
- Same as [JeroMQ](https://github.com/zeromq/jeromq "JeroMQ"):
44
-
45
- [COPYING](https://github.com/zeromq/jeromq/blob/master/COPYING "COPYING")
46
-
47
- [COPYING.LESSER](https://github.com/zeromq/jeromq/blob/master/COPYING.LESSER "COPYING.LESSER")
1
+ jrzmq [![Build Status](https://secure.travis-ci.org/outcastgeek/jrzmq.png?branch=master)](http://travis-ci.org/outcastgeek/jrzmq)
2
+ =====
3
+ Provides JRuby Bindings to a Pure Java implementation of libzmq (ZeroMQ).
4
+
5
+ Installation
6
+ ============
7
+
8
+ jruby -S gem install jrzmq
9
+ gem "jrzmq", "~> 1.0.3"
10
+
11
+ example
12
+ =======
13
+
14
+ require 'jrzmq'
15
+
16
+ context = ZMQ::Context.new(1)
17
+
18
+ puts "Opening connection for READ DOWNSTREAM"
19
+ inbound = context.socket(ZMQ::UPSTREAM)
20
+ inbound.bind("ipc://localconnection")
21
+ inbound.set_receive_time_out 10
22
+
23
+ puts "Opening connection for WRITE UPSTREAM"
24
+ outbound = context.socket(ZMQ::DOWNSTREAM)
25
+ outbound.connect("ipc://localconnection")
26
+ outbound.set_send_time_out 10
27
+
28
+ messages = %w{Hello World! QUIT}
29
+
30
+ messages.each do |msg|
31
+ outbound.send(msg)
32
+ end
33
+
34
+ loop do
35
+ received_msg = inbound.recv_str
36
+ puts "Received #{received_msg}"
37
+ break if received_msg == "QUIT"
38
+ end
39
+
40
+ license
41
+ =======
42
+
43
+ Same as [JeroMQ](https://github.com/zeromq/jeromq "JeroMQ"):
44
+
45
+ [COPYING](https://github.com/zeromq/jeromq/blob/master/COPYING "COPYING")
46
+
47
+ [COPYING.LESSER](https://github.com/zeromq/jeromq/blob/master/COPYING.LESSER "COPYING.LESSER")
data/Rakefile CHANGED
@@ -1,8 +1,8 @@
1
- #!/usr/bin/env rake
2
-
3
- require 'bundler/gem_tasks'
4
- require 'rspec/core/rake_task'
5
-
6
- RSpec::Core::RakeTask.new(:spec)
7
-
8
- task :default => :spec
1
+ #!/usr/bin/env rake
2
+
3
+ require 'bundler/gem_tasks'
4
+ require 'rspec/core/rake_task'
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ task :default => :spec
data/bin/jrzmq CHANGED
@@ -1,3 +1,3 @@
1
- #!/usr/bin/env ruby
2
-
3
- raise("JRubyZeroMQ only runs on JRuby.") unless (RUBY_PLATFORM =~ /java/)
1
+ #!/usr/bin/env ruby
2
+
3
+ raise("JRubyZeroMQ only runs on JRuby.") unless (RUBY_PLATFORM =~ /java/)
Binary file
Binary file
Binary file
Binary file
Binary file
data/jrzmq.gemspec CHANGED
@@ -1,24 +1,25 @@
1
- $:.push File.expand_path("../lib/jrzmq", __FILE__)
2
- require 'version'
3
-
4
- Gem::Specification.new do |spec|
5
- spec.name = "jrzmq"
6
- spec.version = ZeroMQ::VERSION
7
- spec.required_rubygems_version = Gem::Requirement.new(">= 1.2") if spec.respond_to?(:required_rubygems_version=)
8
- spec.authors = [ "outcastgeek" ]
9
- spec.description = 'ZeroMQ JRuby Bindings using JeroMQ.'
10
- spec.summary = 'Provides JRuby Bindings to a Pure Java implementation of libzmq (ZeroMQ).'
11
- spec.email = 'outcastgeek+JRubyZeroMQ@gmail.com'
12
- spec.executables = [ "jrzmq" ]
13
- spec.files = %w(.gitignore README.md LICENSE Rakefile Gemfile jrzmq.gemspec)
14
- spec.files.concat(Dir['bin/*'])
15
- spec.files.concat(Dir['lib/**/*.rb'])
16
- spec.files.concat(Dir['jars/**/*.jar'])
17
- spec.homepage = 'https://github.com/outcastgeek/jrzmq'
18
- spec.has_rdoc = false
19
- spec.require_paths = [ "lib" ]
20
- spec.rubygems_version = '1.3.6'
21
- spec.add_dependency 'edn', '>= 1.0.0'
22
- spec.add_development_dependency 'rspec', '~> 2.11.0'
23
- spec.add_development_dependency 'rake', '~> 10.0.3'
24
- end
1
+ $:.push File.expand_path("../lib/jrzmq", __FILE__)
2
+ require 'version'
3
+
4
+ Gem::Specification.new do |spec|
5
+ spec.name = "jrzmq"
6
+ spec.version = ZeroMQ::VERSION
7
+ spec.required_rubygems_version = Gem::Requirement.new(">= 1.2") if spec.respond_to?(:required_rubygems_version=)
8
+ spec.authors = [ "outcastgeek" ]
9
+ spec.description = 'ZeroMQ JRuby Bindings using JeroMQ.'
10
+ spec.summary = 'Provides JRuby Bindings to a Pure Java implementation of libzmq (ZeroMQ).'
11
+ spec.email = 'outcastgeek+JRubyZeroMQ@gmail.com'
12
+ spec.licenses = ['MIT', 'LGPL', 'GPL-3']
13
+ spec.executables = [ "jrzmq" ]
14
+ spec.files = %w(.gitignore README.md LICENSE Rakefile Gemfile jrzmq.gemspec)
15
+ spec.files.concat(Dir['bin/*'])
16
+ spec.files.concat(Dir['lib/**/*.rb'])
17
+ spec.files.concat(Dir['jars/**/*.jar'])
18
+ spec.homepage = 'https://github.com/outcastgeek/jrzmq'
19
+ spec.has_rdoc = false
20
+ spec.require_paths = [ "lib" ]
21
+ spec.rubygems_version = '1.3.6'
22
+ spec.add_dependency 'edn', '>= 1.0.2'
23
+ spec.add_development_dependency 'rspec', '~> 2.14.1'
24
+ spec.add_development_dependency 'rake', '~> 10.1.0'
25
+ end
data/lib/jrzmq.rb CHANGED
@@ -1,28 +1,30 @@
1
- require 'java'
2
-
3
- module ZMQ
4
-
5
- %w{../jars/compile jrzmq}.each do |dir|
6
- path = File.expand_path(File.join(File.dirname(__FILE__), dir))
7
- $LOAD_PATH << path
8
- end
9
-
10
- def ZMQ.initialize_logger
11
- require_jars(%w(logback-access logback-classic logback-core logback-site slf4j-api))
12
- rootLogger = Java::OrgSlf4j::LoggerFactory.getLogger(Java::ChQosLogbackClassic::Logger.java_class)
13
- rootLoggerLogLevel = Java::ChQosLogbackClassic::Level::DEBUG
14
- rootLogger.setLevel(rootLoggerLogLevel)
15
- rootLogger.info "Root Logger Log Level was set to: #{rootLoggerLogLevel}"
16
- end
17
-
18
- def ZMQ.require_jars(*names)
19
- names.flatten.each do |name|
20
- require "#{name}.jar"
21
- end
22
- end
23
- end
24
-
25
- #ZMQ.initialize_logger
26
-
27
- require 'components'
28
-
1
+ require 'java'
2
+
3
+ module ZMQ
4
+
5
+ %w{../jars/compile jrzmq}.each do |dir|
6
+ path = File.expand_path(File.join(File.dirname(__FILE__), dir))
7
+ $LOAD_PATH << path
8
+ end
9
+
10
+ module_function
11
+
12
+ def initialize_logger
13
+ require_jars(%w(logback-access logback-classic logback-core logback-site slf4j-api))
14
+ rootLogger = Java::OrgSlf4j::LoggerFactory.getLogger(Java::ChQosLogbackClassic::Logger.java_class)
15
+ rootLoggerLogLevel = Java::ChQosLogbackClassic::Level::DEBUG
16
+ rootLogger.setLevel(rootLoggerLogLevel)
17
+ rootLogger.info "Root Logger Log Level was set to: #{rootLoggerLogLevel}"
18
+ end
19
+
20
+ def require_jars(*names)
21
+ names.flatten.each do |name|
22
+ require "#{name}.jar"
23
+ end
24
+ end
25
+ end
26
+
27
+ #ZMQ.initialize_logger
28
+
29
+ require 'components'
30
+
@@ -1,104 +1,25 @@
1
-
2
- module ZMQ
3
- require_jars(%w(jeromq))
4
-
5
- java_import 'zmq.ZMQ'
6
-
7
- class Socket < org.jeromq.ZMQ::Socket
8
- def setsockopt(opt, val)
9
- self.set_linger val
10
- end
11
- end
12
-
13
- class Context < org.jeromq.ZMQ::Context
14
- def initialize(ioThreads=java.lang.Runtime.getRuntime.availableProcessors)
15
- super(ioThreads)
16
- end
17
-
18
- def socket(type)
19
- Socket.new(self, type)
20
- end
21
- end
22
-
23
- class Poller < org.jeromq.ZMQ::Poller
24
- end
25
-
26
- class Message < org.jeromq.ZMsg
27
- end
28
-
29
- SNDMORE = org.jeromq.ZMQ::SNDMORE
30
-
31
- DONTWAIT = org.jeromq.ZMQ::DONTWAIT
32
-
33
- NOBLOCK = org.jeromq.ZMQ::NOBLOCK
34
-
35
- PAIR = org.jeromq.ZMQ::PAIR
36
-
37
- PUB = org.jeromq.ZMQ::PUB
38
-
39
- SUB = org.jeromq.ZMQ::SUB
40
-
41
- REQ = org.jeromq.ZMQ::REQ
42
-
43
- REP = org.jeromq.ZMQ::REP
44
-
45
- DEALER = org.jeromq.ZMQ::DEALER
46
-
47
- XREQ = org.jeromq.ZMQ::XREQ
48
-
49
- ROUTER = org.jeromq.ZMQ::ROUTER
50
-
51
- XREP = org.jeromq.ZMQ::XREP
52
-
53
- PULL = org.jeromq.ZMQ::PULL
54
-
55
- PUSH = org.jeromq.ZMQ::PUSH
56
-
57
- XPUB = org.jeromq.ZMQ::XPUB
58
-
59
- XSUB = org.jeromq.ZMQ::XSUB
60
-
61
- STREAMER = org.jeromq.ZMQ::STREAMER
62
-
63
- FORWARDER = org.jeromq.ZMQ::FORWARDER
64
-
65
- QUEUE = org.jeromq.ZMQ::QUEUE
66
-
67
- UPSTREAM = org.jeromq.ZMQ::UPSTREAM
68
-
69
- DOWNSTREAM = org.jeromq.ZMQ::DOWNSTREAM
70
-
71
- POLLIN = org.jeromq.ZMQ::POLLIN
72
-
73
- POLLOUT = org.jeromq.ZMQ::POLLOUT
74
-
75
- POLLERR = org.jeromq.ZMQ::POLLERR
76
- =begin
77
- EVENT_CONNECTED = org.jeromq.ZMQ::EVENT_CONNECTED
78
-
79
- EVENT_DELAYED = org.jeromq.ZMQ::EVENT_DELAYED
80
-
81
- EVENT_RETRIED = org.jeromq.ZMQ::EVENT_RETRIED
82
-
83
- EVENT_CONNECT_FAILED = org.jeromq.ZMQ::EVENT_CONNECT_FAILED
84
-
85
- EVENT_LISTENING = org.jeromq.ZMQ::EVENT_LISTENING
86
-
87
- EVENT_BIND_FAILED = org.jeromq.ZMQ::EVENT_BIND_FAILED
88
-
89
- EVENT_ACCEPTED = org.jeromq.ZMQ::EVENT_ACCEPTED
90
-
91
- EVENT_ACCEPT_FAILED = org.jeromq.ZMQ::EVENT_ACCEPT_FAILED
92
-
93
- EVENT_CLOSED = org.jeromq.ZMQ::EVENT_CLOSED
94
-
95
- EVENT_CLOSE_FAILED = org.jeromq.ZMQ::EVENT_CLOSE_FAILED
96
-
97
- EVENT_DISCONNECTED = org.jeromq.ZMQ::EVENT_DISCONNECTED
98
-
99
- EVENT_ALL = org.jeromq.ZMQ::EVENT_ALL
100
- =end
101
- IDENTITY = ZMQ::ZMQ_IDENTITY
102
-
103
- LINGER = ZMQ::ZMQ_LINGER
104
- end
1
+
2
+ require 'zmq_classes'
3
+ require 'zmq_constants'
4
+
5
+ module ZMQ
6
+
7
+ ########### DATA SERIALIZATION #########
8
+
9
+ require 'edn'
10
+
11
+ module_function
12
+
13
+ def read(data)
14
+ EDN.read(data)
15
+ end
16
+
17
+ def write(data)
18
+ data.to_edn
19
+ end
20
+
21
+ def poll(items, timeout)
22
+ org.jeromq.ZMQ.poll(items, timeout)
23
+ end
24
+
25
+ end
data/lib/jrzmq/version.rb CHANGED
@@ -1,3 +1,3 @@
1
- module ZeroMQ
2
- VERSION = "1.0.2"
3
- end
1
+ module ZeroMQ
2
+ VERSION = "1.0.3.0"
3
+ end
@@ -0,0 +1,45 @@
1
+
2
+ module ZMQ
3
+
4
+ require_jars(%w(jeromq))
5
+
6
+ java_import 'zmq.ZMQ'
7
+ java_import 'zmq.Msg'
8
+
9
+ class Socket < org.jeromq.ZMQ::Socket
10
+ def setsockopt(opt, val)
11
+ self.base.setsockopt opt, val.to_java(:int)
12
+ end
13
+ end
14
+
15
+ class Context < org.jeromq.ZMQ::Context
16
+ def initialize(ioThreads=java.lang.Runtime.getRuntime.availableProcessors)
17
+ super(ioThreads)
18
+ end
19
+
20
+ def socket(type)
21
+ Socket.new(self, type)
22
+ end
23
+ end
24
+
25
+ class Poller < org.jeromq.ZMQ::Poller
26
+ def initialize(context=nil, size=32)
27
+ super(context, size)
28
+ end
29
+ end
30
+
31
+ class PollItem < org.jeromq.ZMQ::PollItem
32
+ def initialize(s, ops)
33
+ super(s, ops)
34
+ end
35
+ end
36
+
37
+ class Message < org.jeromq.ZMQ::Msg
38
+ def initialize(src)
39
+ super(src)
40
+ end
41
+ end
42
+
43
+ class ZMQQueue < org.jeromq::ZMQQueue
44
+ end
45
+ end
@@ -0,0 +1,92 @@
1
+
2
+ module ZMQ
3
+
4
+ require_jars(%w(jeromq))
5
+
6
+ java_import 'zmq.ZMQ'
7
+ java_import 'zmq.Msg'
8
+
9
+ SNDMORE = org.jeromq.ZMQ::SNDMORE
10
+
11
+ SNDTIMEO = ZMQ::ZMQ_SNDTIMEO
12
+
13
+ RCVTIMEO = ZMQ::ZMQ_RCVTIMEO
14
+
15
+ DONTWAIT = org.jeromq.ZMQ::DONTWAIT
16
+
17
+ NOBLOCK = org.jeromq.ZMQ::NOBLOCK
18
+
19
+ PAIR = org.jeromq.ZMQ::PAIR
20
+
21
+ PUB = org.jeromq.ZMQ::PUB
22
+
23
+ SUB = org.jeromq.ZMQ::SUB
24
+
25
+ REQ = org.jeromq.ZMQ::REQ
26
+
27
+ REP = org.jeromq.ZMQ::REP
28
+
29
+ DEALER = org.jeromq.ZMQ::DEALER
30
+
31
+ XREQ = org.jeromq.ZMQ::XREQ
32
+
33
+ ROUTER = org.jeromq.ZMQ::ROUTER
34
+
35
+ XREP = org.jeromq.ZMQ::XREP
36
+
37
+ PULL = org.jeromq.ZMQ::PULL
38
+
39
+ PUSH = org.jeromq.ZMQ::PUSH
40
+
41
+ XPUB = org.jeromq.ZMQ::XPUB
42
+
43
+ XSUB = org.jeromq.ZMQ::XSUB
44
+
45
+ STREAMER = org.jeromq.ZMQ::STREAMER
46
+
47
+ FORWARDER = org.jeromq.ZMQ::FORWARDER
48
+
49
+ QUEUE = org.jeromq.ZMQ::QUEUE
50
+
51
+ UPSTREAM = org.jeromq.ZMQ::UPSTREAM
52
+
53
+ DOWNSTREAM = org.jeromq.ZMQ::DOWNSTREAM
54
+
55
+ POLLIN = org.jeromq.ZMQ::POLLIN
56
+
57
+ POLLOUT = org.jeromq.ZMQ::POLLOUT
58
+
59
+ POLLERR = org.jeromq.ZMQ::POLLERR
60
+
61
+ SUBSCRIBE = ZMQ::ZMQ_SUBSCRIBE
62
+
63
+ UNSUBSCRIBE = ZMQ::ZMQ_UNSUBSCRIBE
64
+ =begin
65
+ EVENT_CONNECTED = org.jeromq.ZMQ::EVENT_CONNECTED
66
+
67
+ EVENT_DELAYED = org.jeromq.ZMQ::EVENT_DELAYED
68
+
69
+ EVENT_RETRIED = org.jeromq.ZMQ::EVENT_RETRIED
70
+
71
+ EVENT_CONNECT_FAILED = org.jeromq.ZMQ::EVENT_CONNECT_FAILED
72
+
73
+ EVENT_LISTENING = org.jeromq.ZMQ::EVENT_LISTENING
74
+
75
+ EVENT_BIND_FAILED = org.jeromq.ZMQ::EVENT_BIND_FAILED
76
+
77
+ EVENT_ACCEPTED = org.jeromq.ZMQ::EVENT_ACCEPTED
78
+
79
+ EVENT_ACCEPT_FAILED = org.jeromq.ZMQ::EVENT_ACCEPT_FAILED
80
+
81
+ EVENT_CLOSED = org.jeromq.ZMQ::EVENT_CLOSED
82
+
83
+ EVENT_CLOSE_FAILED = org.jeromq.ZMQ::EVENT_CLOSE_FAILED
84
+
85
+ EVENT_DISCONNECTED = org.jeromq.ZMQ::EVENT_DISCONNECTED
86
+
87
+ EVENT_ALL = org.jeromq.ZMQ::EVENT_ALL
88
+ =end
89
+ IDENTITY = ZMQ::ZMQ_IDENTITY
90
+
91
+ LINGER = ZMQ::ZMQ_LINGER
92
+ end
metadata CHANGED
@@ -1,30 +1,27 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jrzmq
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
5
- prerelease:
4
+ version: 1.0.3.0
6
5
  platform: ruby
7
6
  authors:
8
7
  - outcastgeek
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-01-03 00:00:00.000000000 Z
11
+ date: 2013-11-01 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: edn
16
15
  version_requirements: !ruby/object:Gem::Requirement
17
16
  requirements:
18
- - - ! '>='
17
+ - - '>='
19
18
  - !ruby/object:Gem::Version
20
- version: 1.0.0
21
- none: false
19
+ version: 1.0.2
22
20
  requirement: !ruby/object:Gem::Requirement
23
21
  requirements:
24
- - - ! '>='
22
+ - - '>='
25
23
  - !ruby/object:Gem::Version
26
- version: 1.0.0
27
- none: false
24
+ version: 1.0.2
28
25
  prerelease: false
29
26
  type: :runtime
30
27
  - !ruby/object:Gem::Dependency
@@ -33,14 +30,12 @@ dependencies:
33
30
  requirements:
34
31
  - - ~>
35
32
  - !ruby/object:Gem::Version
36
- version: 2.11.0
37
- none: false
33
+ version: 2.14.1
38
34
  requirement: !ruby/object:Gem::Requirement
39
35
  requirements:
40
36
  - - ~>
41
37
  - !ruby/object:Gem::Version
42
- version: 2.11.0
43
- none: false
38
+ version: 2.14.1
44
39
  prerelease: false
45
40
  type: :development
46
41
  - !ruby/object:Gem::Dependency
@@ -49,14 +44,12 @@ dependencies:
49
44
  requirements:
50
45
  - - ~>
51
46
  - !ruby/object:Gem::Version
52
- version: 10.0.3
53
- none: false
47
+ version: 10.1.0
54
48
  requirement: !ruby/object:Gem::Requirement
55
49
  requirements:
56
50
  - - ~>
57
51
  - !ruby/object:Gem::Version
58
- version: 10.0.3
59
- none: false
52
+ version: 10.1.0
60
53
  prerelease: false
61
54
  type: :development
62
55
  description: ZeroMQ JRuby Bindings using JeroMQ.
@@ -76,6 +69,8 @@ files:
76
69
  - lib/jrzmq.rb
77
70
  - lib/jrzmq/components.rb
78
71
  - lib/jrzmq/version.rb
72
+ - lib/jrzmq/zmq_classes.rb
73
+ - lib/jrzmq/zmq_constants.rb
79
74
  - jars/compile/jeromq.jar
80
75
  - jars/compile/logback-access.jar
81
76
  - jars/compile/logback-classic.jar
@@ -83,28 +78,29 @@ files:
83
78
  - jars/compile/logback-site.jar
84
79
  - jars/compile/slf4j-api.jar
85
80
  homepage: https://github.com/outcastgeek/jrzmq
86
- licenses: []
81
+ licenses:
82
+ - MIT
83
+ - LGPL
84
+ - GPL-3
85
+ metadata: {}
87
86
  post_install_message:
88
87
  rdoc_options: []
89
88
  require_paths:
90
89
  - lib
91
90
  required_ruby_version: !ruby/object:Gem::Requirement
92
91
  requirements:
93
- - - ! '>='
92
+ - - '>='
94
93
  - !ruby/object:Gem::Version
95
- version: !binary |-
96
- MA==
97
- none: false
94
+ version: '0'
98
95
  required_rubygems_version: !ruby/object:Gem::Requirement
99
96
  requirements:
100
- - - ! '>='
97
+ - - '>='
101
98
  - !ruby/object:Gem::Version
102
99
  version: '1.2'
103
- none: false
104
100
  requirements: []
105
101
  rubyforge_project:
106
- rubygems_version: 1.8.24
102
+ rubygems_version: 2.1.9
107
103
  signing_key:
108
- specification_version: 3
104
+ specification_version: 4
109
105
  summary: Provides JRuby Bindings to a Pure Java implementation of libzmq (ZeroMQ).
110
106
  test_files: []