qpid_proton 0.22.0 → 0.23.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 +4 -4
- data/{LICENSE → LICENSE.txt} +0 -0
- data/examples/broker.rb +3 -4
- data/examples/direct_recv.rb +1 -1
- data/examples/direct_send.rb +1 -1
- data/examples/example_test.rb +15 -15
- data/examples/{ssl_certs → ssl-certs}/README.txt +0 -0
- data/examples/{ssl_certs → ssl-certs}/tclient-certificate.p12 +0 -0
- data/examples/{ssl_certs → ssl-certs}/tclient-certificate.pem +0 -0
- data/examples/{ssl_certs → ssl-certs}/tclient-full.p12 +0 -0
- data/examples/{ssl_certs → ssl-certs}/tclient-private-key.pem +0 -0
- data/examples/{ssl_certs → ssl-certs}/tserver-certificate.p12 +0 -0
- data/examples/{ssl_certs → ssl-certs}/tserver-certificate.pem +0 -0
- data/examples/{ssl_certs → ssl-certs}/tserver-full.p12 +0 -0
- data/examples/{ssl_certs → ssl-certs}/tserver-private-key.pem +0 -0
- data/ext/cproton/cproton.c +42 -1
- data/lib/core/container.rb +75 -110
- data/lib/core/disposition.rb +24 -6
- data/lib/core/exceptions.rb +4 -0
- data/lib/core/listener.rb +10 -4
- data/lib/core/transfer.rb +1 -20
- data/lib/core/work_queue.rb +54 -33
- data/lib/util/schedule.rb +21 -37
- data/tests/{old_examples → old-examples}/broker.rb +0 -0
- data/tests/{old_examples → old-examples}/client.rb +0 -0
- data/tests/{old_examples → old-examples}/direct_recv.rb +0 -0
- data/tests/{old_examples → old-examples}/direct_send.rb +0 -0
- data/tests/{old_examples → old-examples}/helloworld.rb +0 -0
- data/tests/{old_examples → old-examples}/helloworld_direct.rb +0 -0
- data/tests/{old_examples → old-examples}/lib/debugging.rb +0 -0
- data/tests/{old_examples → old-examples}/lib/driver.rb +0 -0
- data/tests/{old_examples → old-examples}/lib/qpid_examples.rb +0 -0
- data/tests/{old_examples → old-examples}/lib/selectable.rb +0 -0
- data/tests/{old_examples → old-examples}/lib/send_and_receive.rb +0 -0
- data/tests/{old_examples → old-examples}/old_example_test.rb +0 -0
- data/tests/{old_examples → old-examples}/server.rb +0 -0
- data/tests/{old_examples → old-examples}/simple_recv.rb +0 -0
- data/tests/{old_examples → old-examples}/simple_send.rb +0 -0
- data/tests/test_container.rb +97 -29
- data/tests/test_delivery.rb +8 -0
- data/tests/test_interop.rb +1 -1
- data/tests/test_tools.rb +3 -3
- data/tests/test_utils.rb +63 -0
- metadata +28 -29
- data/ChangeLog +0 -185
- data/TODO +0 -8
data/tests/test_delivery.rb
CHANGED
@@ -107,4 +107,12 @@ class TestDelivery < MiniTest::Test
|
|
107
107
|
assert_equal ["accept", "reject", "release-really", "release", "modify", "modify-empty", "modify-nil", "reject-raise", "release-raise"], rh.received
|
108
108
|
assert_empty sh.unsettled
|
109
109
|
end
|
110
|
+
|
111
|
+
def test_names
|
112
|
+
names = ["accepted", "rejected", "released", "modified"]
|
113
|
+
states = names.collect { |n| Disposition.const_get(n.upcase) }
|
114
|
+
assert_equal names, states.collect { |s| Disposition::name_of(s) }
|
115
|
+
assert_equal names, states.collect { |s| Disposition::State::name_of(s) }
|
116
|
+
assert_equal names, states.collect { |s| Transfer::name_of(s) }
|
117
|
+
end
|
110
118
|
end
|
data/tests/test_interop.rb
CHANGED
@@ -22,7 +22,7 @@ class InteropTest < MiniTest::Test
|
|
22
22
|
|
23
23
|
# Walk up the directory tree to find the tests directory.
|
24
24
|
def get_data(name)
|
25
|
-
path = File.join(File.dirname(__FILE__), "
|
25
|
+
path = File.join(File.dirname(__FILE__), "../../tests/interop/#{name}.amqp")
|
26
26
|
raise "Can't find test/interop directory from #{__FILE__}" unless File.exist?(path)
|
27
27
|
File.open(path, "rb") { |f| f.read }
|
28
28
|
end
|
data/tests/test_tools.rb
CHANGED
@@ -150,8 +150,8 @@ end
|
|
150
150
|
class ServerContainer < Qpid::Proton::Container
|
151
151
|
include Qpid::Proton
|
152
152
|
|
153
|
-
def initialize(id=nil, listener_opts=nil, n=1)
|
154
|
-
super id
|
153
|
+
def initialize(id=nil, listener_opts=nil, n=1, handler=nil)
|
154
|
+
super handler, id
|
155
155
|
@listener = listen_io(TCPServer.open(0), ListenOnceHandler.new(listener_opts, n))
|
156
156
|
end
|
157
157
|
|
@@ -162,7 +162,7 @@ class ServerContainer < Qpid::Proton::Container
|
|
162
162
|
end
|
163
163
|
|
164
164
|
class ServerContainerThread < ServerContainer
|
165
|
-
def initialize(
|
165
|
+
def initialize(*args)
|
166
166
|
super
|
167
167
|
@thread = Thread.new { run }
|
168
168
|
end
|
data/tests/test_utils.rb
ADDED
@@ -0,0 +1,63 @@
|
|
1
|
+
# Licensed to the Apache Software Foundation (ASF) under one
|
2
|
+
# or more contributor license agreements. See the NOTICE file
|
3
|
+
# distributed with this work for additional information
|
4
|
+
# regarding copyright ownership. The ASF licenses this file
|
5
|
+
# to you under the Apache License, Version 2.0 (the
|
6
|
+
# "License"); you may not use this file except in compliance
|
7
|
+
# with the License. You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
12
|
+
# software distributed under the License is distributed on an
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
14
|
+
# KIND, either express or implied. See the License for the
|
15
|
+
# specific language governing permissions and limitations
|
16
|
+
# under the License.
|
17
|
+
|
18
|
+
require 'test_tools'
|
19
|
+
require 'minitest/unit'
|
20
|
+
|
21
|
+
class UtilsTest < MiniTest::Test
|
22
|
+
include Qpid::Proton
|
23
|
+
|
24
|
+
# Make sure Schedule puts tasks in proper order.
|
25
|
+
def test_schedule_empty
|
26
|
+
s = Schedule.new
|
27
|
+
assert_empty s
|
28
|
+
assert_nil s.next_tick
|
29
|
+
assert_nil s.pop(nil)
|
30
|
+
end
|
31
|
+
|
32
|
+
def test_schedule_insert_pop
|
33
|
+
s = Schedule.new
|
34
|
+
[3,5,4].each { |i| s.insert(Time.at(i), i) }
|
35
|
+
assert_equal Time.at(3), s.next_tick
|
36
|
+
assert_nil s.pop(Time.at(2))
|
37
|
+
assert_equal [3,4], [s.pop(Time.at(4)), s.pop(Time.at(4))]
|
38
|
+
refute_empty s
|
39
|
+
assert_nil s.pop(Time.at(4.9))
|
40
|
+
assert_equal Time.at(5), s.next_tick
|
41
|
+
assert_equal 5, s.pop(Time.at(5))
|
42
|
+
assert_empty s
|
43
|
+
end
|
44
|
+
|
45
|
+
# Make sure we sort by time and don't change order if same time
|
46
|
+
def test_schedule_sort
|
47
|
+
s = Schedule.new
|
48
|
+
[4.0, 3, 5, 1, 4.1, 4.2 ].each { |n| s.insert(Time.at(n.to_i), n) }
|
49
|
+
[1, 3, 4.0, 4.1, 4.2].each { |n| assert_equal n, s.pop(Time.at(4)) }
|
50
|
+
refute_empty s # Not empty but nothing due until time 5
|
51
|
+
assert_equal Time.at(5), s.next_tick
|
52
|
+
assert_nil s.pop(Time.at(4))
|
53
|
+
assert_equal 5, s.pop(Time.at(5))
|
54
|
+
end
|
55
|
+
|
56
|
+
def test_schedule_clear
|
57
|
+
s = Schedule.new
|
58
|
+
[3, 5].each { |n| s.insert(Time.at(n.to_i), n) }
|
59
|
+
refute_empty s
|
60
|
+
s.clear
|
61
|
+
assert_empty s
|
62
|
+
end
|
63
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: qpid_proton
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.23.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Darryl L. Pierce
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2018-
|
12
|
+
date: 2018-06-05 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: |
|
15
15
|
Proton is a high performance, lightweight messaging library. It can be used in
|
@@ -23,9 +23,7 @@ extensions:
|
|
23
23
|
- ext/cproton/extconf.rb
|
24
24
|
extra_rdoc_files: []
|
25
25
|
files:
|
26
|
-
-
|
27
|
-
- LICENSE
|
28
|
-
- TODO
|
26
|
+
- LICENSE.txt
|
29
27
|
- examples/README.md
|
30
28
|
- examples/broker.rb
|
31
29
|
- examples/client.rb
|
@@ -36,15 +34,15 @@ files:
|
|
36
34
|
- examples/server.rb
|
37
35
|
- examples/simple_recv.rb
|
38
36
|
- examples/simple_send.rb
|
39
|
-
- examples/
|
40
|
-
- examples/
|
41
|
-
- examples/
|
42
|
-
- examples/
|
43
|
-
- examples/
|
44
|
-
- examples/
|
45
|
-
- examples/
|
46
|
-
- examples/
|
47
|
-
- examples/
|
37
|
+
- examples/ssl-certs/README.txt
|
38
|
+
- examples/ssl-certs/tclient-certificate.p12
|
39
|
+
- examples/ssl-certs/tclient-certificate.pem
|
40
|
+
- examples/ssl-certs/tclient-full.p12
|
41
|
+
- examples/ssl-certs/tclient-private-key.pem
|
42
|
+
- examples/ssl-certs/tserver-certificate.p12
|
43
|
+
- examples/ssl-certs/tserver-certificate.pem
|
44
|
+
- examples/ssl-certs/tserver-full.p12
|
45
|
+
- examples/ssl-certs/tserver-private-key.pem
|
48
46
|
- examples/ssl_send.rb
|
49
47
|
- ext/cproton/cproton.c
|
50
48
|
- ext/cproton/extconf.rb
|
@@ -93,21 +91,21 @@ files:
|
|
93
91
|
- lib/util/schedule.rb
|
94
92
|
- lib/util/version.rb
|
95
93
|
- lib/util/wrapper.rb
|
96
|
-
- tests/
|
97
|
-
- tests/
|
98
|
-
- tests/
|
99
|
-
- tests/
|
100
|
-
- tests/
|
101
|
-
- tests/
|
102
|
-
- tests/
|
103
|
-
- tests/
|
104
|
-
- tests/
|
105
|
-
- tests/
|
106
|
-
- tests/
|
107
|
-
- tests/
|
108
|
-
- tests/
|
109
|
-
- tests/
|
110
|
-
- tests/
|
94
|
+
- tests/old-examples/broker.rb
|
95
|
+
- tests/old-examples/client.rb
|
96
|
+
- tests/old-examples/direct_recv.rb
|
97
|
+
- tests/old-examples/direct_send.rb
|
98
|
+
- tests/old-examples/helloworld.rb
|
99
|
+
- tests/old-examples/helloworld_direct.rb
|
100
|
+
- tests/old-examples/lib/debugging.rb
|
101
|
+
- tests/old-examples/lib/driver.rb
|
102
|
+
- tests/old-examples/lib/qpid_examples.rb
|
103
|
+
- tests/old-examples/lib/selectable.rb
|
104
|
+
- tests/old-examples/lib/send_and_receive.rb
|
105
|
+
- tests/old-examples/old_example_test.rb
|
106
|
+
- tests/old-examples/server.rb
|
107
|
+
- tests/old-examples/simple_recv.rb
|
108
|
+
- tests/old-examples/simple_send.rb
|
111
109
|
- tests/test_connection_driver.rb
|
112
110
|
- tests/test_container.rb
|
113
111
|
- tests/test_container_sasl.rb
|
@@ -118,6 +116,7 @@ files:
|
|
118
116
|
- tests/test_old_adapter.rb
|
119
117
|
- tests/test_tools.rb
|
120
118
|
- tests/test_uri.rb
|
119
|
+
- tests/test_utils.rb
|
121
120
|
homepage: http://qpid.apache.org/proton
|
122
121
|
licenses:
|
123
122
|
- Apache-2.0
|
data/ChangeLog
DELETED
@@ -1,185 +0,0 @@
|
|
1
|
-
|
2
|
-
version 0.17.0:
|
3
|
-
|
4
|
-
version 0.16.0:
|
5
|
-
* PROTON-1350 PROTON-1351: Introduce proton-c core library - Created new core proton library qpid-proton-core which only contains protocol processsing and no IO. - Rearranged source tree to separate core protocol code and io/reactor/extra code - Rearranged code so that compiler dependent code is isolated and platform (OS) dependent code is isolated
|
6
|
-
|
7
|
-
version 0.15.0:
|
8
|
-
* PROTON-1282: Seg Fault in Ruby Messenger pn_messenger_free
|
9
|
-
|
10
|
-
version 0.14.0:
|
11
|
-
|
12
|
-
version 0.13.1:
|
13
|
-
|
14
|
-
version 0.13.0:
|
15
|
-
|
16
|
-
version 0.12.2:
|
17
|
-
|
18
|
-
version 0.12.1:
|
19
|
-
|
20
|
-
version 0.12.0:
|
21
|
-
* PROTON-1059: ruby binding broken in 0.11 release and on master
|
22
|
-
* PROTON-949: fix proton build with ccache swig
|
23
|
-
|
24
|
-
version 0.11.1:
|
25
|
-
* PROTON-1059: ruby binding broken in 0.11 release and on master
|
26
|
-
|
27
|
-
version 0.11.0:
|
28
|
-
* PROTON-949: fix proton build with ccache swig
|
29
|
-
|
30
|
-
version 0.10:
|
31
|
-
* PROTON-904: No longer need to include libuuid header
|
32
|
-
* PROTON-781: Update CMake to install new Ruby packages.
|
33
|
-
* PROTON-781: Added the set of LinkOption classes to Ruby.
|
34
|
-
* PROTON-781: Added support for reactors to the Ruby Endpoint class.
|
35
|
-
* PROTON-781: Added Container to the Ruby reactive APIs.
|
36
|
-
* PROTON-781: Added SessionPerConnection to the Ruby reactive APIs.
|
37
|
-
* PROTON-781: Added Backoff to the Ruby reactive APIs.
|
38
|
-
* PROTON-781: Added Connector to the Ruby reactive APIs.
|
39
|
-
* PROTON-781: Added URLs to the Ruby reactive APIs.
|
40
|
-
* PROTON-781: Added the URL class to the Ruby core APIs.
|
41
|
-
* PROTON-781: Added Reactor and Task to the ClassWrapper
|
42
|
-
* PROTON-781: Added the Reactor mixin to the Ruby reactive APIs.
|
43
|
-
* PROTON-781: Added the Handler mixin to the Ruby reactive APIs.
|
44
|
-
* PROTON-781: Added the Timeout mixin to the Ruby APIs.
|
45
|
-
* PROTON-781: Added GlobalOverrides to the Ruby reactive APIs.
|
46
|
-
* PROTON-781: Added SSLConfig to the Ruby reactive APIs.
|
47
|
-
* PROTON-781: Added reactor support to the Ruby Event class.
|
48
|
-
* PROTON-781: Added the Reactor class to the Ruby reactor APIs.
|
49
|
-
* PROTON-781: Added Acceptor to the Ruby reactive APIs.
|
50
|
-
* PROTON-781: Added the Task class to the Ruby reactor APIs.
|
51
|
-
* PROTON-781: Added MessagingHandler to the Ruby reactive APIs.
|
52
|
-
* PROTON-781: Added OutgoingMessageHandler to the Ruby reactive APIs.
|
53
|
-
* PROTON-781: Added IncomingMessageHandler to the Ruby reactive APIs.
|
54
|
-
* PROTON-781: Added the BaseHandler class to the Ruby reactive APIs.
|
55
|
-
* PROTON-781: Added the CFlowController class to the Ruby reactive APIs.
|
56
|
-
* PROTON-781: Added EndpointStateHandler to the Ruby reactive APIs.
|
57
|
-
* PROTON-781: Added the Acking mixin to the Ruby reactive APIs.
|
58
|
-
* PROTON-781: Refactored the Ruby Selectable class.
|
59
|
-
* PROTON-781: Repackaged the Ruby Selectable class to Qpid::Proton.
|
60
|
-
* PROTON-781: Deleted the Ruby Filter mixin.
|
61
|
-
* PROTON-781: Added the WrappedHandler class to the Ruby reactor APIs.
|
62
|
-
* PROTON-799: Update CMake INSTALL for 81a5449
|
63
|
-
* PROTON-914: Fix for getting the SSL peer hostname in Ruby.
|
64
|
-
* PROTON-898: Update Ruby bindings to use pn_selectable_get_fd
|
65
|
-
* PROTON-799: Test for the Wrapper and rbkey system
|
66
|
-
* PROTON-799: Adjusted the Ruby error macro
|
67
|
-
* PROTON-799: Added yardopts
|
68
|
-
* PROTON-799: Added the Event classes to the Ruby engine APIs.
|
69
|
-
* PROTON-799: Added the ClassWrapper mixin for the Ruby engine APIs.
|
70
|
-
* PROTON-799: Added the Transport class to the Ruby engine APIs.
|
71
|
-
* PROTON-799: Added the SSL classes to the Ruby engine APIs.
|
72
|
-
* PROTON-799: Added the SASL class to the Ruby engine APIs.
|
73
|
-
* PROTON-799: Added the SASLError and TransportError errors to Ruby.
|
74
|
-
* PROTON-799: Added the Connection class to the Ruby engine APIs.
|
75
|
-
* PROTON-799: Added the Receiver class to the Ruby engine APIs.
|
76
|
-
* PROTON-799: Added the Sender class to the Ruby engine APIs.
|
77
|
-
* PROTON-799: Added the Link class to the Ruby engine APIs.
|
78
|
-
* PROTON-799: Added the Delivery class to the Ruby engine APIs.
|
79
|
-
* PROTON-799: Added the Disposition class to the Ruby engine APIs.
|
80
|
-
* PROTON-799: Added the Terminus class to the Ruby engine APIs.
|
81
|
-
* PROTON-799: Added the Session class to the Ruby engine APIs.
|
82
|
-
* PROTON-799: Added the Endpoint class to the Ruby engine APIs.
|
83
|
-
* PROTON-799: Added the Wrapper mixin to the Ruby engine APIs.
|
84
|
-
* PROTON-799: Added the Condition class to the Ruby engine APIs.
|
85
|
-
* PROTON-799: Added the UUID mixin for the Ruby reactive APIs.
|
86
|
-
* PROTON-799: Created a utility module for the Ruby Engine APIs.
|
87
|
-
* PROTON-799: Added the Collector class to the Ruby engine APIs.
|
88
|
-
* PROTON-799: Added the pn_rbkey_t type to the Ruby APIs.
|
89
|
-
* PROTON-799: Created a wrapper helper module for Ruby bindings.
|
90
|
-
* PROTON-799: Added a constants value mixin to the Ruby bindings.
|
91
|
-
* PROTON-799: Added the object/object= methods to Ruby Data class
|
92
|
-
* PROTON-799: Updated the Ruby namespaces.
|
93
|
-
* PROTON-799: Rearranged Ruby library.
|
94
|
-
* PROTON-883: Fixed using a pointer value as a size - It's not clear to me how the warning message this caused went ignored - It's also not clear to me why this error passed the tests without crashing, probably the ruby tests need improving.
|
95
|
-
* PROTON-883: Wrap pn_transport_peek for Ruby.
|
96
|
-
* PROTON-873: Replaced send with __send__ in Ruby Mapping class
|
97
|
-
|
98
|
-
version 0.9.1:
|
99
|
-
|
100
|
-
version 0.9:
|
101
|
-
* PROTON-822: removed some references I missed in my prior purge of deprecated message cruft
|
102
|
-
* PROTON-822: removed deprecated message save/load as it has been deprecated for a while now and was also the cause of a valgrind error
|
103
|
-
* PROTON-775: Ensure that annotation keys in Ruby are encoded as symbols.
|
104
|
-
* PROTON-737: add missing PN_STATE_ERR error to ruby
|
105
|
-
* PROTON-765: Fix Ruby's support for 64-bit values on 32-bit systems
|
106
|
-
* PROTON-755: Changed how the Data rspec test sets a single random character.
|
107
|
-
* PROTON-755: Add SecureRandom for use by Ruby 1.8 tests
|
108
|
-
* PROTON-755: Updated rspec tests to use the newer expect syntax
|
109
|
-
* PROTON-752: Release the GIL on blocking calls in Ruby.
|
110
|
-
* PROTON-736: Tweaked how Ruby 1.8 determines if a string is UTF-8
|
111
|
-
* PROTON-752: Provide a non-blocking means to receive messages in Ruby.
|
112
|
-
* PROTON-747: Around wrappers for Ruby Messenger methods that raise errors
|
113
|
-
* PROTON-736: Replace missed force_encoding with encode
|
114
|
-
* PROTON-743: Provide a means to clear errors in a Ruby Messenger.
|
115
|
-
* PROTON-746: Fix encoding a Ruby symbol into a message body.
|
116
|
-
* PROTON-736: Default Ruby 1.8 encoding to be binary unless explicit
|
117
|
-
* PROTON-736: Created the UTFString and BinaryString classes for Ruby.
|
118
|
-
* PROTON-739: Add TTL to Ruby Messenger subscribe method.
|
119
|
-
* PROTON-736: Only encode Ruby strings as UTF-8 if it says it's UTF-8
|
120
|
-
* PROTON-736: Ruby Message does not return all content.
|
121
|
-
|
122
|
-
version 0.8:
|
123
|
-
* PROTON-693: Python Url class to wrap C function pni_parse_url
|
124
|
-
* PROTON-651: remove the extraineous 'PN_' if under the proton namespace.
|
125
|
-
* PROTON-651: added version constants for python, php, and ruby bindings
|
126
|
-
* PROTON-615: Fix binding dependencies
|
127
|
-
* PROTON-549: fixed warnings from ruby binding
|
128
|
-
* PROTON-531: Removed Selectable.killable? from Ruby bindings
|
129
|
-
* PROTON-531: Created the Selectable class for Ruby.
|
130
|
-
* PROTON-531: Expose the passive mode in Ruby bindings.
|
131
|
-
|
132
|
-
version 0.7:
|
133
|
-
* PROTON-550: Fail build if Ruby is enabled but missing dependencies.
|
134
|
-
* PROTON-551: Fixed a typo in the Ruby Messenger blocking call.
|
135
|
-
* PROTON-538: more readme fixes and install tweaks
|
136
|
-
* PROTON-538: fixed install to not use irregular paths, marked a lot of noisy variables as advanced, removed extra level of caching from cmake variables that had confusing effects, updated the readme to match what the build actually does
|
137
|
-
* PROTON-445: Dynamic languages honor CMAKE_INSTALL_PREFIX
|
138
|
-
|
139
|
-
version 0.6:
|
140
|
-
* PROTON-482: Fix the Ruby install directory.
|
141
|
-
* PROTON-479: Fixed typo in status
|
142
|
-
* PROTON-479: Added PENDING status to Ruby Trackers
|
143
|
-
* PROTON-260 Improve API rdoc comments for Ruby.
|
144
|
-
* PROTON-464: Install Ruby bindings to install prefix if specified.
|
145
|
-
* PROTON-456: Added password property to Ruby Messenger class.
|
146
|
-
* PROTON-455: Added rewrite method to Ruby Messenger class.
|
147
|
-
* PROTON-454: Added the route method to Ruby's Messenger class.
|
148
|
-
* PROTON-452: Expose the Messenger interrupt method in Ruby.
|
149
|
-
* PROTON-450: Use random ports for Ruby Rspec tests.
|
150
|
-
* PROTON-448: Backing out the Ruby data change.
|
151
|
-
* PROTON-448: Added missed ChangeLog entry
|
152
|
-
* PROTON-448: Added support for Data encode/decode to Ruby Swig.
|
153
|
-
* PROTON-431: Fixed the Ruby spec tests.
|
154
|
-
* PROTON-273: Removed the content Rspec test for Ruby.
|
155
|
-
* PROTON-427: Removed the flag argument from Messenger.settle
|
156
|
-
|
157
|
-
version 0.5:
|
158
|
-
* PROTON-406: Fix installing the Ruby bindings.
|
159
|
-
* PROTON-399: Ruby bindings now install with the rest of Proton.
|
160
|
-
* PROTON-369: Add the properties= method to Ruby Message.
|
161
|
-
* PROTON-380: Added the body property to Ruby Message class.
|
162
|
-
* PROTON-379: Added annotations property to Ruby Message class.
|
163
|
-
* PROTON-381: Fixed encoding a Ruby symbol into a Data object.
|
164
|
-
* PROTON-378: Add instructions property to Ruby Message class.
|
165
|
-
* PROTON-369: Ruby Message.clear clears out properties
|
166
|
-
* PROTON-377: Ruby automatically encodes an instance of Time.
|
167
|
-
* PROTON-376: Fix how a ::hash is automatically added to Data in Ruby
|
168
|
-
* PROTON-369: Add properties field to Qpid:Proton::Message
|
169
|
-
* PROTON-341: Update the Ruby interop tests.
|
170
|
-
* PROTON-322: Extend the Ruby Hash class to work with the Data class.
|
171
|
-
* PROTON-322: Extended the Ruby Array class to work with the Data class.
|
172
|
-
* PROTON-306: Fixes to the Ruby list helper type for Data.
|
173
|
-
* PROTON-304: Removed accept mode from the Ruby bindings.
|
174
|
-
* PROTON-227: Added missing elements to the Rdoc for qpid::proton::Data
|
175
|
-
* PROTON-215: Added ruby interop test.
|
176
|
-
* PROTON-227: Created the Data class for the Ruby bindings.
|
177
|
-
|
178
|
-
version 0.4:
|
179
|
-
|
180
|
-
version 0.3:
|
181
|
-
* PROTON-188: applied modified patch
|
182
|
-
|
183
|
-
version 0.2:
|
184
|
-
|
185
|
-
version 0.1:
|
data/TODO
DELETED
@@ -1,8 +0,0 @@
|
|
1
|
-
Proton Ruby bindings TODO List
|
2
|
-
========================================================================
|
3
|
-
|
4
|
-
You can find the list of bugs and enhacements to be fixed at:
|
5
|
-
|
6
|
-
https://issues.apache.org/jira/issues/?jql=project%20%3D%20PROTON%20AND%20status%20in%20(Open%2C%20%22In%20Progress%22%2C%20Reopened)%20AND%20component%20%3D%20ruby-binding
|
7
|
-
|
8
|
-
|