torquebox-messaging 2.3.1-java → 2.3.2-java

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.
@@ -32,6 +32,7 @@ module TorqueBox
32
32
 
33
33
  def self.included(base)
34
34
  base.extend(ClassMethods)
35
+ base.extend(FutureStatus)
35
36
  base.send(:include, FutureStatus)
36
37
  end
37
38
 
Binary file
@@ -1,6 +1,6 @@
1
1
  module TorqueboxMessaging
2
- VERSION = '2.3.1'
3
- MAVEN_VERSION = '2.3.1'
2
+ VERSION = '2.3.2'
3
+ MAVEN_VERSION = '2.3.2'
4
4
  end
5
5
  begin
6
6
  require 'java'
metadata CHANGED
@@ -2,14 +2,14 @@
2
2
  name: torquebox-messaging
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 2.3.1
5
+ version: 2.3.2
6
6
  platform: java
7
7
  authors:
8
8
  - The TorqueBox Team
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-05-07 00:00:00.000000000 Z
12
+ date: 2013-06-12 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: torquebox-core
@@ -17,13 +17,13 @@ dependencies:
17
17
  requirements:
18
18
  - - '='
19
19
  - !ruby/object:Gem::Version
20
- version: 2.3.1
20
+ version: 2.3.2
21
21
  none: false
22
22
  requirement: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 2.3.1
26
+ version: 2.3.2
27
27
  none: false
28
28
  prerelease: false
29
29
  type: :runtime
@@ -33,13 +33,13 @@ dependencies:
33
33
  requirements:
34
34
  - - '='
35
35
  - !ruby/object:Gem::Version
36
- version: 2.3.1
36
+ version: 2.3.2
37
37
  none: false
38
38
  requirement: !ruby/object:Gem::Requirement
39
39
  requirements:
40
40
  - - '='
41
41
  - !ruby/object:Gem::Version
42
- version: 2.3.1
42
+ version: 2.3.2
43
43
  none: false
44
44
  prerelease: false
45
45
  type: :runtime
@@ -109,47 +109,47 @@ files:
109
109
  - lib/org.torquebox.messaging-client.rb
110
110
  - lib/gem_hook.rb
111
111
  - lib/torquebox/messaging.rb
112
- - lib/torquebox/messaging/task.rb
113
- - lib/torquebox/messaging/backgroundable_processor.rb
112
+ - lib/torquebox/messaging/future_status.rb
113
+ - lib/torquebox/messaging/connection.rb
114
114
  - lib/torquebox/messaging/connection_factory.rb
115
- - lib/torquebox/messaging/backgroundable.rb
116
115
  - lib/torquebox/messaging/marshal_base64_message.rb
117
- - lib/torquebox/messaging/connection.rb
118
- - lib/torquebox/messaging/future_responder.rb
116
+ - lib/torquebox/messaging/xa_session.rb
119
117
  - lib/torquebox/messaging/echo_processor.rb
120
- - lib/torquebox/messaging/datamapper_marshaling.rb
121
- - lib/torquebox/messaging/core.rb
122
- - lib/torquebox/messaging/text_message.rb
123
118
  - lib/torquebox/messaging/topic.rb
124
- - lib/torquebox/messaging/message_processor.rb
125
- - lib/torquebox/messaging/future_status.rb
119
+ - lib/torquebox/messaging/const_missing.rb
120
+ - lib/torquebox/messaging/session.rb
126
121
  - lib/torquebox/messaging/edn_message.rb
122
+ - lib/torquebox/messaging/queue.rb
123
+ - lib/torquebox/messaging/core.rb
124
+ - lib/torquebox/messaging/xa_connection_factory.rb
125
+ - lib/torquebox/messaging/message.rb
127
126
  - lib/torquebox/messaging/future.rb
127
+ - lib/torquebox/messaging/backgroundable_processor.rb
128
+ - lib/torquebox/messaging/marshal_message.rb
129
+ - lib/torquebox/messaging/json_message.rb
130
+ - lib/torquebox/messaging/task.rb
128
131
  - lib/torquebox/messaging/destination.rb
132
+ - lib/torquebox/messaging/datamapper_marshaling.rb
133
+ - lib/torquebox/messaging/future_responder.rb
134
+ - lib/torquebox/messaging/message_processor.rb
135
+ - lib/torquebox/messaging/backgroundable.rb
136
+ - lib/torquebox/messaging/text_message.rb
129
137
  - lib/torquebox/messaging/xa_connection.rb
130
- - lib/torquebox/messaging/const_missing.rb
131
- - lib/torquebox/messaging/json_message.rb
132
- - lib/torquebox/messaging/marshal_message.rb
133
- - lib/torquebox/messaging/message.rb
134
- - lib/torquebox/messaging/queue.rb
135
- - lib/torquebox/messaging/session.rb
136
- - lib/torquebox/messaging/xa_connection_factory.rb
137
- - lib/torquebox/messaging/xa_session.rb
138
138
  - lib/torquebox/messaging/ext/javax_jms_queue_browser.rb
139
139
  - lib/torquebox/messaging/processor_middleware/with_transaction.rb
140
140
  - lib/torquebox/messaging/processor_middleware/default_middleware.rb
141
141
  - lib/torquebox/messaging/processor_middleware/chain.rb
142
+ - spec/future_spec.rb
143
+ - spec/future_responder_spec.rb
144
+ - spec/task_spec.rb
145
+ - spec/json_message_spec.rb
142
146
  - spec/message_spec.rb
143
147
  - spec/backgroundable_spec.rb
144
- - spec/task_spec.rb
148
+ - spec/chain_spec.rb
145
149
  - spec/destination_spec.rb
146
- - spec/json_message_spec.rb
147
- - spec/future_responder_spec.rb
148
- - spec/default_middleware_spec.rb
149
150
  - spec/datamapper_marshaling_spec.rb
150
151
  - spec/message_processor_spec.rb
151
- - spec/future_spec.rb
152
- - spec/chain_spec.rb
152
+ - spec/default_middleware_spec.rb
153
153
  homepage: http://torquebox.org/
154
154
  licenses:
155
155
  - lgpl
@@ -159,17 +159,15 @@ require_paths:
159
159
  - lib
160
160
  required_ruby_version: !ruby/object:Gem::Requirement
161
161
  requirements:
162
- - - ">="
162
+ - - '>='
163
163
  - !ruby/object:Gem::Version
164
- version: !binary |-
165
- MA==
164
+ version: '0'
166
165
  none: false
167
166
  required_rubygems_version: !ruby/object:Gem::Requirement
168
167
  requirements:
169
- - - ">="
168
+ - - '>='
170
169
  - !ruby/object:Gem::Version
171
- version: !binary |-
172
- MA==
170
+ version: '0'
173
171
  none: false
174
172
  requirements: []
175
173
  rubyforge_project:
@@ -178,14 +176,14 @@ signing_key:
178
176
  specification_version: 3
179
177
  summary: TorqueBox Messaging Client
180
178
  test_files:
179
+ - spec/future_spec.rb
180
+ - spec/future_responder_spec.rb
181
+ - spec/task_spec.rb
182
+ - spec/json_message_spec.rb
181
183
  - spec/message_spec.rb
182
184
  - spec/backgroundable_spec.rb
183
- - spec/task_spec.rb
185
+ - spec/chain_spec.rb
184
186
  - spec/destination_spec.rb
185
- - spec/json_message_spec.rb
186
- - spec/future_responder_spec.rb
187
- - spec/default_middleware_spec.rb
188
187
  - spec/datamapper_marshaling_spec.rb
189
188
  - spec/message_processor_spec.rb
190
- - spec/future_spec.rb
191
- - spec/chain_spec.rb
189
+ - spec/default_middleware_spec.rb