stomper 1.0.0 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (152) hide show
  1. data/.gitignore +5 -0
  2. data/{spec/spec.opts → .rspec} +0 -2
  3. data/Gemfile +4 -0
  4. data/LICENSE +201 -201
  5. data/README.md +130 -0
  6. data/Rakefile +5 -0
  7. data/examples/basic.rb +38 -0
  8. data/examples/events.rb +54 -0
  9. data/features/acking_messages.feature +147 -0
  10. data/features/disconnecting.feature +12 -0
  11. data/features/establish_connection.feature +44 -0
  12. data/features/protocol_version_negotiation.feature +61 -0
  13. data/features/receipts.feature +72 -0
  14. data/features/scopes.feature +32 -0
  15. data/features/secure_connections.feature +38 -0
  16. data/features/send_and_message.feature +28 -0
  17. data/features/steps/acking_messages_steps.rb +39 -0
  18. data/features/steps/disconnecting_steps.rb +8 -0
  19. data/features/steps/establish_connection_steps.rb +74 -0
  20. data/features/steps/frame_transmission_steps.rb +35 -0
  21. data/features/steps/protocol_version_negotiation_steps.rb +15 -0
  22. data/features/steps/receipts_steps.rb +79 -0
  23. data/features/steps/scopes_steps.rb +52 -0
  24. data/features/steps/secure_connections_steps.rb +41 -0
  25. data/features/steps/send_and_message_steps.rb +35 -0
  26. data/features/steps/subscribing_steps.rb +36 -0
  27. data/features/steps/threaded_receiver_steps.rb +8 -0
  28. data/features/steps/transactions_steps.rb +0 -0
  29. data/features/subscribing.feature +151 -0
  30. data/features/support/env.rb +11 -0
  31. data/features/support/header_helpers.rb +12 -0
  32. data/features/support/ssl/README +6 -0
  33. data/features/support/ssl/broker_cert.csr +17 -0
  34. data/features/support/ssl/broker_cert.pem +72 -0
  35. data/features/support/ssl/broker_key.pem +27 -0
  36. data/features/support/ssl/client_cert.csr +17 -0
  37. data/features/support/ssl/client_cert.pem +72 -0
  38. data/features/support/ssl/client_key.pem +27 -0
  39. data/features/support/ssl/demoCA/cacert.pem +17 -0
  40. data/features/support/ssl/demoCA/index.txt +2 -0
  41. data/features/support/ssl/demoCA/index.txt.attr +1 -0
  42. data/features/support/ssl/demoCA/index.txt.attr.old +1 -0
  43. data/features/support/ssl/demoCA/index.txt.old +1 -0
  44. data/features/support/ssl/demoCA/newcerts/01.pem +72 -0
  45. data/features/support/ssl/demoCA/newcerts/02.pem +72 -0
  46. data/features/support/ssl/demoCA/private/cakey.pem +17 -0
  47. data/features/support/ssl/demoCA/serial +1 -0
  48. data/features/support/ssl/demoCA/serial.old +1 -0
  49. data/features/support/test_stomp_server.rb +150 -0
  50. data/features/threaded_receiver.feature +11 -0
  51. data/features/transactions.feature +66 -0
  52. data/lib/stomper.rb +30 -20
  53. data/lib/stomper/connection.rb +442 -102
  54. data/lib/stomper/errors.rb +59 -0
  55. data/lib/stomper/extensions.rb +10 -0
  56. data/lib/stomper/extensions/common.rb +258 -0
  57. data/lib/stomper/extensions/events.rb +213 -0
  58. data/lib/stomper/extensions/heartbeat.rb +101 -0
  59. data/lib/stomper/extensions/scoping.rb +56 -0
  60. data/lib/stomper/frame.rb +54 -0
  61. data/lib/stomper/frame_serializer.rb +217 -0
  62. data/lib/stomper/headers.rb +15 -0
  63. data/lib/stomper/receipt_manager.rb +36 -0
  64. data/lib/stomper/receivers.rb +7 -0
  65. data/lib/stomper/receivers/threaded.rb +71 -0
  66. data/lib/stomper/scopes.rb +9 -0
  67. data/lib/stomper/scopes/header_scope.rb +49 -0
  68. data/lib/stomper/scopes/receipt_scope.rb +44 -0
  69. data/lib/stomper/scopes/transaction_scope.rb +109 -0
  70. data/lib/stomper/sockets.rb +66 -28
  71. data/lib/stomper/subscription_manager.rb +79 -0
  72. data/lib/stomper/support.rb +68 -0
  73. data/lib/stomper/support/1.8/frame_serializer.rb +53 -0
  74. data/lib/stomper/support/1.8/headers.rb +183 -0
  75. data/lib/stomper/support/1.9/frame_serializer.rb +64 -0
  76. data/lib/stomper/support/1.9/headers.rb +172 -0
  77. data/lib/stomper/support/ruby.rb +13 -0
  78. data/lib/stomper/uris.rb +49 -0
  79. data/lib/stomper/version.rb +7 -0
  80. data/spec/spec_helper.rb +13 -9
  81. data/spec/stomper/connection_spec.rb +712 -0
  82. data/spec/stomper/extensions/common_spec.rb +187 -0
  83. data/spec/stomper/extensions/events_spec.rb +78 -0
  84. data/spec/stomper/extensions/heartbeat_spec.rb +103 -0
  85. data/spec/stomper/extensions/scoping_spec.rb +21 -0
  86. data/spec/stomper/frame_serializer_1.8_spec.rb +318 -0
  87. data/spec/stomper/frame_serializer_spec.rb +316 -0
  88. data/spec/stomper/frame_spec.rb +36 -0
  89. data/spec/stomper/headers_spec.rb +224 -0
  90. data/spec/stomper/receipt_manager_spec.rb +91 -0
  91. data/spec/stomper/receivers/threaded_spec.rb +116 -0
  92. data/spec/stomper/scopes/header_scope_spec.rb +42 -0
  93. data/spec/stomper/scopes/receipt_scope_spec.rb +51 -0
  94. data/spec/stomper/scopes/transaction_scope_spec.rb +183 -0
  95. data/spec/stomper/sockets_spec.rb +113 -0
  96. data/spec/stomper/subscription_manager_spec.rb +107 -0
  97. data/spec/stomper/support_spec.rb +69 -0
  98. data/spec/stomper/uris_spec.rb +54 -0
  99. data/spec/stomper_spec.rb +9 -0
  100. data/spec/support/custom_argument_matchers.rb +57 -0
  101. data/spec/support/existential_frame_matchers.rb +19 -0
  102. data/spec/support/frame_header_matchers.rb +10 -0
  103. data/stomper.gemspec +30 -0
  104. metadata +272 -97
  105. data/AUTHORS +0 -21
  106. data/CHANGELOG +0 -20
  107. data/README.rdoc +0 -120
  108. data/lib/stomper/client.rb +0 -34
  109. data/lib/stomper/frame_reader.rb +0 -73
  110. data/lib/stomper/frame_writer.rb +0 -21
  111. data/lib/stomper/frames.rb +0 -39
  112. data/lib/stomper/frames/abort.rb +0 -10
  113. data/lib/stomper/frames/ack.rb +0 -25
  114. data/lib/stomper/frames/begin.rb +0 -11
  115. data/lib/stomper/frames/client_frame.rb +0 -89
  116. data/lib/stomper/frames/commit.rb +0 -10
  117. data/lib/stomper/frames/connect.rb +0 -10
  118. data/lib/stomper/frames/connected.rb +0 -30
  119. data/lib/stomper/frames/disconnect.rb +0 -10
  120. data/lib/stomper/frames/error.rb +0 -21
  121. data/lib/stomper/frames/message.rb +0 -48
  122. data/lib/stomper/frames/receipt.rb +0 -19
  123. data/lib/stomper/frames/send.rb +0 -10
  124. data/lib/stomper/frames/server_frame.rb +0 -38
  125. data/lib/stomper/frames/subscribe.rb +0 -42
  126. data/lib/stomper/frames/unsubscribe.rb +0 -19
  127. data/lib/stomper/open_uri_interface.rb +0 -41
  128. data/lib/stomper/receipt_handlers.rb +0 -23
  129. data/lib/stomper/receiptor.rb +0 -38
  130. data/lib/stomper/subscriber.rb +0 -76
  131. data/lib/stomper/subscription.rb +0 -128
  132. data/lib/stomper/subscriptions.rb +0 -95
  133. data/lib/stomper/threaded_receiver.rb +0 -59
  134. data/lib/stomper/transaction.rb +0 -185
  135. data/lib/stomper/transactor.rb +0 -50
  136. data/lib/stomper/uri.rb +0 -55
  137. data/spec/client_spec.rb +0 -29
  138. data/spec/connection_spec.rb +0 -22
  139. data/spec/frame_reader_spec.rb +0 -37
  140. data/spec/frame_writer_spec.rb +0 -27
  141. data/spec/frames/client_frame_spec.rb +0 -66
  142. data/spec/frames/indirect_frame_spec.rb +0 -45
  143. data/spec/frames/server_frame_spec.rb +0 -85
  144. data/spec/open_uri_interface_spec.rb +0 -132
  145. data/spec/receiptor_spec.rb +0 -35
  146. data/spec/shared_connection_examples.rb +0 -79
  147. data/spec/subscriber_spec.rb +0 -77
  148. data/spec/subscription_spec.rb +0 -157
  149. data/spec/subscriptions_spec.rb +0 -145
  150. data/spec/threaded_receiver_spec.rb +0 -33
  151. data/spec/transaction_spec.rb +0 -139
  152. data/spec/transactor_spec.rb +0 -46
data/stomper.gemspec ADDED
@@ -0,0 +1,30 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require "stomper/version"
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "stomper"
7
+ s.version = Stomper::VERSION
8
+ s.platform = Gem::Platform::RUBY
9
+ s.authors = ["Ian D. Eccles"]
10
+ s.email = ["ian.eccles@gmail.com"]
11
+ s.homepage = "http://github.com/iande/stomper"
12
+ s.summary = %q{Client for message queues implementing the Stomp protocol interface.}
13
+ s.description = %q{Client library for message passing with brokers that support the Stomp protocol.}
14
+
15
+ s.rubyforge_project = "stomper"
16
+
17
+ s.files = `git ls-files`.split("\n")
18
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
19
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
20
+ s.require_paths = ["lib"]
21
+
22
+ s.required_ruby_version = '>= 1.8.7'
23
+ s.has_rdoc = 'yard'
24
+ s.add_development_dependency('rspec', '~> 2.4.0')
25
+ s.add_development_dependency('simplecov', '>= 0.3.0')
26
+ s.add_development_dependency('yard', '>= 0.6.0')
27
+ s.add_development_dependency('rake')
28
+ s.add_development_dependency('bluecloth')
29
+ s.add_development_dependency('cucumber', '>= 0.10.0')
30
+ end
metadata CHANGED
@@ -3,10 +3,10 @@ name: stomper
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease: false
5
5
  segments:
6
- - 1
6
+ - 2
7
7
  - 0
8
8
  - 0
9
- version: 1.0.0
9
+ version: 2.0.0
10
10
  platform: ruby
11
11
  authors:
12
12
  - Ian D. Eccles
@@ -14,102 +14,229 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-09-27 00:00:00 -04:00
17
+ date: 2011-02-22 00:00:00 -05:00
18
18
  default_executable:
19
- dependencies: []
20
-
21
- description: Ruby client for the stomp messaging protocol derived from the original stomp gem
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ name: rspec
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ none: false
25
+ requirements:
26
+ - - ~>
27
+ - !ruby/object:Gem::Version
28
+ segments:
29
+ - 2
30
+ - 4
31
+ - 0
32
+ version: 2.4.0
33
+ type: :development
34
+ version_requirements: *id001
35
+ - !ruby/object:Gem::Dependency
36
+ name: simplecov
37
+ prerelease: false
38
+ requirement: &id002 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ segments:
44
+ - 0
45
+ - 3
46
+ - 0
47
+ version: 0.3.0
48
+ type: :development
49
+ version_requirements: *id002
50
+ - !ruby/object:Gem::Dependency
51
+ name: yard
52
+ prerelease: false
53
+ requirement: &id003 !ruby/object:Gem::Requirement
54
+ none: false
55
+ requirements:
56
+ - - ">="
57
+ - !ruby/object:Gem::Version
58
+ segments:
59
+ - 0
60
+ - 6
61
+ - 0
62
+ version: 0.6.0
63
+ type: :development
64
+ version_requirements: *id003
65
+ - !ruby/object:Gem::Dependency
66
+ name: rake
67
+ prerelease: false
68
+ requirement: &id004 !ruby/object:Gem::Requirement
69
+ none: false
70
+ requirements:
71
+ - - ">="
72
+ - !ruby/object:Gem::Version
73
+ segments:
74
+ - 0
75
+ version: "0"
76
+ type: :development
77
+ version_requirements: *id004
78
+ - !ruby/object:Gem::Dependency
79
+ name: bluecloth
80
+ prerelease: false
81
+ requirement: &id005 !ruby/object:Gem::Requirement
82
+ none: false
83
+ requirements:
84
+ - - ">="
85
+ - !ruby/object:Gem::Version
86
+ segments:
87
+ - 0
88
+ version: "0"
89
+ type: :development
90
+ version_requirements: *id005
91
+ - !ruby/object:Gem::Dependency
92
+ name: cucumber
93
+ prerelease: false
94
+ requirement: &id006 !ruby/object:Gem::Requirement
95
+ none: false
96
+ requirements:
97
+ - - ">="
98
+ - !ruby/object:Gem::Version
99
+ segments:
100
+ - 0
101
+ - 10
102
+ - 0
103
+ version: 0.10.0
104
+ type: :development
105
+ version_requirements: *id006
106
+ description: Client library for message passing with brokers that support the Stomp protocol.
22
107
  email:
23
- - ian.eccles@gmali.com
108
+ - ian.eccles@gmail.com
24
109
  executables: []
25
110
 
26
111
  extensions: []
27
112
 
28
- extra_rdoc_files:
29
- - README.rdoc
30
- - CHANGELOG
31
- - LICENSE
32
- - AUTHORS
113
+ extra_rdoc_files: []
114
+
33
115
  files:
34
- - lib/stomper/receiptor.rb
35
- - lib/stomper/subscription.rb
36
- - lib/stomper/transactor.rb
37
- - lib/stomper/receipt_handlers.rb
38
- - lib/stomper/frame_reader.rb
39
- - lib/stomper/frames.rb
40
- - lib/stomper/subscriber.rb
41
- - lib/stomper/transaction.rb
42
- - lib/stomper/threaded_receiver.rb
43
- - lib/stomper/sockets.rb
44
- - lib/stomper/subscriptions.rb
45
- - lib/stomper/uri.rb
46
- - lib/stomper/frames/send.rb
47
- - lib/stomper/frames/receipt.rb
48
- - lib/stomper/frames/ack.rb
49
- - lib/stomper/frames/client_frame.rb
50
- - lib/stomper/frames/disconnect.rb
51
- - lib/stomper/frames/message.rb
52
- - lib/stomper/frames/error.rb
53
- - lib/stomper/frames/connected.rb
54
- - lib/stomper/frames/server_frame.rb
55
- - lib/stomper/frames/begin.rb
56
- - lib/stomper/frames/unsubscribe.rb
57
- - lib/stomper/frames/connect.rb
58
- - lib/stomper/frames/abort.rb
59
- - lib/stomper/frames/commit.rb
60
- - lib/stomper/frames/subscribe.rb
61
- - lib/stomper/frame_writer.rb
62
- - lib/stomper/client.rb
63
- - lib/stomper/connection.rb
64
- - lib/stomper/open_uri_interface.rb
116
+ - .gitignore
117
+ - .rspec
118
+ - Gemfile
119
+ - LICENSE
120
+ - README.md
121
+ - Rakefile
122
+ - examples/basic.rb
123
+ - examples/events.rb
124
+ - features/acking_messages.feature
125
+ - features/disconnecting.feature
126
+ - features/establish_connection.feature
127
+ - features/protocol_version_negotiation.feature
128
+ - features/receipts.feature
129
+ - features/scopes.feature
130
+ - features/secure_connections.feature
131
+ - features/send_and_message.feature
132
+ - features/steps/acking_messages_steps.rb
133
+ - features/steps/disconnecting_steps.rb
134
+ - features/steps/establish_connection_steps.rb
135
+ - features/steps/frame_transmission_steps.rb
136
+ - features/steps/protocol_version_negotiation_steps.rb
137
+ - features/steps/receipts_steps.rb
138
+ - features/steps/scopes_steps.rb
139
+ - features/steps/secure_connections_steps.rb
140
+ - features/steps/send_and_message_steps.rb
141
+ - features/steps/subscribing_steps.rb
142
+ - features/steps/threaded_receiver_steps.rb
143
+ - features/steps/transactions_steps.rb
144
+ - features/subscribing.feature
145
+ - features/support/env.rb
146
+ - features/support/header_helpers.rb
147
+ - features/support/ssl/README
148
+ - features/support/ssl/broker_cert.csr
149
+ - features/support/ssl/broker_cert.pem
150
+ - features/support/ssl/broker_key.pem
151
+ - features/support/ssl/client_cert.csr
152
+ - features/support/ssl/client_cert.pem
153
+ - features/support/ssl/client_key.pem
154
+ - features/support/ssl/demoCA/cacert.pem
155
+ - features/support/ssl/demoCA/index.txt
156
+ - features/support/ssl/demoCA/index.txt.attr
157
+ - features/support/ssl/demoCA/index.txt.attr.old
158
+ - features/support/ssl/demoCA/index.txt.old
159
+ - features/support/ssl/demoCA/newcerts/01.pem
160
+ - features/support/ssl/demoCA/newcerts/02.pem
161
+ - features/support/ssl/demoCA/private/cakey.pem
162
+ - features/support/ssl/demoCA/serial
163
+ - features/support/ssl/demoCA/serial.old
164
+ - features/support/test_stomp_server.rb
165
+ - features/threaded_receiver.feature
166
+ - features/transactions.feature
65
167
  - lib/stomper.rb
66
- - spec/threaded_receiver_spec.rb
67
- - spec/open_uri_interface_spec.rb
68
- - spec/frame_writer_spec.rb
69
- - spec/subscriptions_spec.rb
70
- - spec/frame_reader_spec.rb
168
+ - lib/stomper/connection.rb
169
+ - lib/stomper/errors.rb
170
+ - lib/stomper/extensions.rb
171
+ - lib/stomper/extensions/common.rb
172
+ - lib/stomper/extensions/events.rb
173
+ - lib/stomper/extensions/heartbeat.rb
174
+ - lib/stomper/extensions/scoping.rb
175
+ - lib/stomper/frame.rb
176
+ - lib/stomper/frame_serializer.rb
177
+ - lib/stomper/headers.rb
178
+ - lib/stomper/receipt_manager.rb
179
+ - lib/stomper/receivers.rb
180
+ - lib/stomper/receivers/threaded.rb
181
+ - lib/stomper/scopes.rb
182
+ - lib/stomper/scopes/header_scope.rb
183
+ - lib/stomper/scopes/receipt_scope.rb
184
+ - lib/stomper/scopes/transaction_scope.rb
185
+ - lib/stomper/sockets.rb
186
+ - lib/stomper/subscription_manager.rb
187
+ - lib/stomper/support.rb
188
+ - lib/stomper/support/1.8/frame_serializer.rb
189
+ - lib/stomper/support/1.8/headers.rb
190
+ - lib/stomper/support/1.9/frame_serializer.rb
191
+ - lib/stomper/support/1.9/headers.rb
192
+ - lib/stomper/support/ruby.rb
193
+ - lib/stomper/uris.rb
194
+ - lib/stomper/version.rb
71
195
  - spec/spec_helper.rb
72
- - spec/transactor_spec.rb
73
- - spec/shared_connection_examples.rb
74
- - spec/spec.opts
75
- - spec/receiptor_spec.rb
76
- - spec/frames/server_frame_spec.rb
77
- - spec/frames/client_frame_spec.rb
78
- - spec/frames/indirect_frame_spec.rb
79
- - spec/connection_spec.rb
80
- - spec/subscription_spec.rb
81
- - spec/client_spec.rb
82
- - spec/subscriber_spec.rb
83
- - spec/transaction_spec.rb
84
- - README.rdoc
85
- - CHANGELOG
86
- - LICENSE
87
- - AUTHORS
88
- has_rdoc: true
196
+ - spec/stomper/connection_spec.rb
197
+ - spec/stomper/extensions/common_spec.rb
198
+ - spec/stomper/extensions/events_spec.rb
199
+ - spec/stomper/extensions/heartbeat_spec.rb
200
+ - spec/stomper/extensions/scoping_spec.rb
201
+ - spec/stomper/frame_serializer_1.8_spec.rb
202
+ - spec/stomper/frame_serializer_spec.rb
203
+ - spec/stomper/frame_spec.rb
204
+ - spec/stomper/headers_spec.rb
205
+ - spec/stomper/receipt_manager_spec.rb
206
+ - spec/stomper/receivers/threaded_spec.rb
207
+ - spec/stomper/scopes/header_scope_spec.rb
208
+ - spec/stomper/scopes/receipt_scope_spec.rb
209
+ - spec/stomper/scopes/transaction_scope_spec.rb
210
+ - spec/stomper/sockets_spec.rb
211
+ - spec/stomper/subscription_manager_spec.rb
212
+ - spec/stomper/support_spec.rb
213
+ - spec/stomper/uris_spec.rb
214
+ - spec/stomper_spec.rb
215
+ - spec/support/custom_argument_matchers.rb
216
+ - spec/support/existential_frame_matchers.rb
217
+ - spec/support/frame_header_matchers.rb
218
+ - stomper.gemspec
219
+ has_rdoc: yard
89
220
  homepage: http://github.com/iande/stomper
90
221
  licenses: []
91
222
 
92
223
  post_install_message:
93
- rdoc_options:
94
- - --quiet
95
- - --title
96
- - stomper documentation
97
- - --opname
98
- - index.html
99
- - --line-numbers
100
- - --main
101
- - README.rdoc
102
- - --inline-source
224
+ rdoc_options: []
225
+
103
226
  require_paths:
104
227
  - lib
105
228
  required_ruby_version: !ruby/object:Gem::Requirement
229
+ none: false
106
230
  requirements:
107
231
  - - ">="
108
232
  - !ruby/object:Gem::Version
109
233
  segments:
110
- - 0
111
- version: "0"
234
+ - 1
235
+ - 8
236
+ - 7
237
+ version: 1.8.7
112
238
  required_rubygems_version: !ruby/object:Gem::Requirement
239
+ none: false
113
240
  requirements:
114
241
  - - ">="
115
242
  - !ruby/object:Gem::Version
@@ -118,27 +245,75 @@ required_rubygems_version: !ruby/object:Gem::Requirement
118
245
  version: "0"
119
246
  requirements: []
120
247
 
121
- rubyforge_project:
122
- rubygems_version: 1.3.6
248
+ rubyforge_project: stomper
249
+ rubygems_version: 1.3.7
123
250
  signing_key:
124
251
  specification_version: 3
125
- summary: Ruby client for the stomp messaging protocol derived from the original stomp gem
252
+ summary: Client for message queues implementing the Stomp protocol interface.
126
253
  test_files:
127
- - spec/threaded_receiver_spec.rb
128
- - spec/open_uri_interface_spec.rb
129
- - spec/frame_writer_spec.rb
130
- - spec/subscriptions_spec.rb
131
- - spec/frame_reader_spec.rb
254
+ - features/acking_messages.feature
255
+ - features/disconnecting.feature
256
+ - features/establish_connection.feature
257
+ - features/protocol_version_negotiation.feature
258
+ - features/receipts.feature
259
+ - features/scopes.feature
260
+ - features/secure_connections.feature
261
+ - features/send_and_message.feature
262
+ - features/steps/acking_messages_steps.rb
263
+ - features/steps/disconnecting_steps.rb
264
+ - features/steps/establish_connection_steps.rb
265
+ - features/steps/frame_transmission_steps.rb
266
+ - features/steps/protocol_version_negotiation_steps.rb
267
+ - features/steps/receipts_steps.rb
268
+ - features/steps/scopes_steps.rb
269
+ - features/steps/secure_connections_steps.rb
270
+ - features/steps/send_and_message_steps.rb
271
+ - features/steps/subscribing_steps.rb
272
+ - features/steps/threaded_receiver_steps.rb
273
+ - features/steps/transactions_steps.rb
274
+ - features/subscribing.feature
275
+ - features/support/env.rb
276
+ - features/support/header_helpers.rb
277
+ - features/support/ssl/README
278
+ - features/support/ssl/broker_cert.csr
279
+ - features/support/ssl/broker_cert.pem
280
+ - features/support/ssl/broker_key.pem
281
+ - features/support/ssl/client_cert.csr
282
+ - features/support/ssl/client_cert.pem
283
+ - features/support/ssl/client_key.pem
284
+ - features/support/ssl/demoCA/cacert.pem
285
+ - features/support/ssl/demoCA/index.txt
286
+ - features/support/ssl/demoCA/index.txt.attr
287
+ - features/support/ssl/demoCA/index.txt.attr.old
288
+ - features/support/ssl/demoCA/index.txt.old
289
+ - features/support/ssl/demoCA/newcerts/01.pem
290
+ - features/support/ssl/demoCA/newcerts/02.pem
291
+ - features/support/ssl/demoCA/private/cakey.pem
292
+ - features/support/ssl/demoCA/serial
293
+ - features/support/ssl/demoCA/serial.old
294
+ - features/support/test_stomp_server.rb
295
+ - features/threaded_receiver.feature
296
+ - features/transactions.feature
132
297
  - spec/spec_helper.rb
133
- - spec/transactor_spec.rb
134
- - spec/shared_connection_examples.rb
135
- - spec/spec.opts
136
- - spec/receiptor_spec.rb
137
- - spec/frames/server_frame_spec.rb
138
- - spec/frames/client_frame_spec.rb
139
- - spec/frames/indirect_frame_spec.rb
140
- - spec/connection_spec.rb
141
- - spec/subscription_spec.rb
142
- - spec/client_spec.rb
143
- - spec/subscriber_spec.rb
144
- - spec/transaction_spec.rb
298
+ - spec/stomper/connection_spec.rb
299
+ - spec/stomper/extensions/common_spec.rb
300
+ - spec/stomper/extensions/events_spec.rb
301
+ - spec/stomper/extensions/heartbeat_spec.rb
302
+ - spec/stomper/extensions/scoping_spec.rb
303
+ - spec/stomper/frame_serializer_1.8_spec.rb
304
+ - spec/stomper/frame_serializer_spec.rb
305
+ - spec/stomper/frame_spec.rb
306
+ - spec/stomper/headers_spec.rb
307
+ - spec/stomper/receipt_manager_spec.rb
308
+ - spec/stomper/receivers/threaded_spec.rb
309
+ - spec/stomper/scopes/header_scope_spec.rb
310
+ - spec/stomper/scopes/receipt_scope_spec.rb
311
+ - spec/stomper/scopes/transaction_scope_spec.rb
312
+ - spec/stomper/sockets_spec.rb
313
+ - spec/stomper/subscription_manager_spec.rb
314
+ - spec/stomper/support_spec.rb
315
+ - spec/stomper/uris_spec.rb
316
+ - spec/stomper_spec.rb
317
+ - spec/support/custom_argument_matchers.rb
318
+ - spec/support/existential_frame_matchers.rb
319
+ - spec/support/frame_header_matchers.rb
data/AUTHORS DELETED
@@ -1,21 +0,0 @@
1
- Stomper authors:
2
- Ian D. Eccles
3
-
4
-
5
- Stomper was initially a fork of the Stomp Ruby Gem. Though it
6
- no longer has a compatible interface with the Stomp gem, and shares
7
- no common code with it, the Stomp contributors are listed below in
8
- recognition of their influence on Stomper. Note: these authors have
9
- not contributed to the Stomper project, nor are they in any way responsible
10
- for this project. Please do not contact them with questions regarding Stomper.
11
-
12
- The following people have contributed to Stomp (ordered by commits):
13
-
14
- Brian McCallister
15
- Glenn Rempe <glenn@rempe.us>
16
- jstrachan
17
- Marius Mathiesen <marius.mathiesen@gmail.com>
18
- Johan S√∏rensen <johan@johansorensen.com>
19
- kookster
20
- Tony Garnock-Jones <tonyg@lshift.net>
21
- chirino