Skip to content

Commit

Permalink
Fix for broken gem.
Browse files Browse the repository at this point in the history
  • Loading branch information
outcastgeek committed Nov 2, 2013
1 parent f71706a commit 90598ce
Show file tree
Hide file tree
Showing 7 changed files with 81 additions and 114 deletions.
185 changes: 75 additions & 110 deletions .idea/workspace.xml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
jrzmq (1.0.3.1)
jrzmq (1.0.3.2)
edn (>= 1.0.2)

GEM
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Installation
============

jruby -S gem install jrzmq
gem "jrzmq", "~> 1.0.3.1"
gem "jrzmq", "~> 1.0.3.2"

example
=======
Expand Down
Empty file added examples/local_throughput.rb
Empty file.
Binary file added jrzmq-1.0.3.2.gem
Binary file not shown.
2 changes: 1 addition & 1 deletion lib/jrzmq/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module ZeroMQ
VERSION = "1.0.3.1"
VERSION = "1.0.3.2"
end
4 changes: 3 additions & 1 deletion lib/jrzmq/zmq_classes.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@

require 'edn'

module ZMQ

require_jars(%w(jeromq))
Expand Down Expand Up @@ -45,7 +47,7 @@ def initialize(s, ops)
end

class Message < org.jeromq.ZMQ::Msg
def initialize(src)
def initialize(src='')
super(src)
end
end
Expand Down

0 comments on commit 90598ce

Please sign in to comment.