Skip to content

Commit

Permalink
upgrade to vert.x 2.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
isaiah committed Jul 24, 2014
1 parent 206e880 commit 79a7741
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ desc "Compile the extension, need jdk7 because vertx relies on it"
task :compile => [DEST_PATH, "#{DEST_PATH}/META-INF"] do |t|
ant.javac :srcdir => "java", :destdir => t.prerequisites.first,
:source => "1.7", :target => "1.7", :debug => true, :includeantruntime => false,
:classpath => "${java.class.path}:${sun.boot.class.path}:jars/vertx-core-2.1.1.jar:jars/netty-all-4.0.20.Final.jar:jars/jackson-core-2.2.2.jar:jars/jackson-databind-2.2.2.jar:jars/jackson-annotations-2.2.2.jar:jars/hazelcast-3.2.3.jar:jars/vertx-platform-2.1.1.jar:jars/vertx-hazelcast-2.1.1.jar"
:classpath => "${java.class.path}:${sun.boot.class.path}:jars/vertx-core-2.1.2.jar:jars/netty-all-4.0.20.Final.jar:jars/jackson-core-2.2.2.jar:jars/jackson-databind-2.2.2.jar:jars/jackson-annotations-2.2.2.jar:jars/hazelcast-3.2.3.jar:jars/vertx-platform-2.1.2.jar:jars/vertx-hazelcast-2.1.2.jar"
end

desc "Copy META-INF"
Expand Down
Binary file removed jars/vertx-core-2.1.1.jar
Binary file not shown.
Binary file added jars/vertx-core-2.1.2.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
6 changes: 3 additions & 3 deletions lib/jubilee.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
require File.join(File.dirname(__FILE__), "../jars/jackson-databind-2.2.2.jar")
require File.join(File.dirname(__FILE__), "../jars/jackson-annotations-2.2.2.jar")
require File.join(File.dirname(__FILE__), "../jars/hazelcast-3.2.3.jar")
require File.join(File.dirname(__FILE__), "../jars/vertx-core-2.1.1.jar")
require File.join(File.dirname(__FILE__), "../jars/vertx-hazelcast-2.1.1.jar")
require File.join(File.dirname(__FILE__), "../jars/vertx-platform-2.1.1.jar")
require File.join(File.dirname(__FILE__), "../jars/vertx-core-2.1.2.jar")
require File.join(File.dirname(__FILE__), "../jars/vertx-hazelcast-2.1.2.jar")
require File.join(File.dirname(__FILE__), "../jars/vertx-platform-2.1.2.jar")
require File.join(File.dirname(__FILE__), "../jars/netty-all-4.0.20.Final.jar")

require 'jubilee/jubilee.jar'
Expand Down
2 changes: 1 addition & 1 deletion lib/jubilee/cli.rb
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def setup_options
end

o.on "-v", "--version", "Print the version information" do
puts "jubilee version #{Jubilee::Version::STRING} on Vert.x 2.1.1"
puts "jubilee version #{Jubilee::Version::STRING} on Vert.x 2.1.2"
exit 0
end
end
Expand Down
4 changes: 3 additions & 1 deletion test/jubilee/test_upload.rb
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,9 @@ def test_put_excessive_overwrite_closed
assert_raises(Errno::ECONNRESET, Errno::EPIPE) do
16384.times { sock.syswrite(buf) }
end
sock.gets
assert_raises(Errno::ECONNRESET) do
sock.gets
end
sock.close
end

Expand Down

0 comments on commit 79a7741

Please sign in to comment.