Skip to content

Commit 8926623

Browse files
author
Michael L. Artz
committed
Merge branch 'release/v0.0.5'
2 parents d260905 + b87a865 commit 8926623

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

lib/rflow/connections/zmq_connection.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
require 'ffi'
2-
require 'ffi-rzmq'
3-
require 'em-zeromq'
1+
#require 'ffi'
2+
#require 'ffi-rzmq'
3+
require 'em-zeromq-mri'
44

55
require 'rflow/connection'
66
require 'rflow/message'

lib/rflow/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
class RFlow
2-
VERSION = "0.0.4"
2+
VERSION = "0.0.5"
33
end # class RFlow

rflow.gemspec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ Gem::Specification.new do |s|
3131
s.add_dependency 'ffi-rzmq' , '~> 0.8'
3232

3333
s.add_dependency 'eventmachine', '>= 1.0.0.beta3'
34-
s.add_dependency 'em-zeromq', '~> 0.2'
34+
# MRI-only because of the FFI memory leak. TODO: remove when ffi fixed
35+
s.add_dependency 'em-zeromq-mri', '~> 0.2'
3536
# Remove this when we break it out into its own gem
3637
s.add_dependency 'eventmachine_httpserver', '~> 0.2'
3738

0 commit comments

Comments
 (0)