qpid_messaging 0.16.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.
Files changed (51) hide show
  1. data/LICENSE +234 -0
  2. data/README.rdoc +46 -0
  3. data/Rakefile +87 -0
  4. data/TODO +7 -0
  5. data/examples/client.rb +50 -0
  6. data/examples/drain.rb +111 -0
  7. data/examples/hello_world.rb +49 -0
  8. data/examples/map_receiver.rb +63 -0
  9. data/examples/map_sender.rb +52 -0
  10. data/examples/server.rb +51 -0
  11. data/examples/spout.rb +126 -0
  12. data/ext/cqpid/cqpid.cpp +9903 -0
  13. data/ext/cqpid/extconf.rb +73 -0
  14. data/features/closing_a_connection.feature +13 -0
  15. data/features/closing_a_session.feature +13 -0
  16. data/features/connecting_to_a_broker.feature +13 -0
  17. data/features/creating_a_receiver.feature +29 -0
  18. data/features/creating_a_sender.feature +25 -0
  19. data/features/creating_a_session.feature +12 -0
  20. data/features/getting_the_connections_authenticated_username.feature +8 -0
  21. data/features/receiving_a_message.feature +28 -0
  22. data/features/sending_a_message.feature +21 -0
  23. data/features/session_returns_its_connection.feature +12 -0
  24. data/features/sessions_have_names.feature +8 -0
  25. data/features/step_definitions/address_steps.rb +24 -0
  26. data/features/step_definitions/connection_steps.rb +93 -0
  27. data/features/step_definitions/receiver_steps.rb +61 -0
  28. data/features/step_definitions/sender_steps.rb +34 -0
  29. data/features/step_definitions/session_steps.rb +99 -0
  30. data/features/support/env.rb +22 -0
  31. data/lib/qpid_messaging.rb +30 -0
  32. data/lib/qpid_messaging/address.rb +187 -0
  33. data/lib/qpid_messaging/connection.rb +162 -0
  34. data/lib/qpid_messaging/duration.rb +95 -0
  35. data/lib/qpid_messaging/encoding.rb +61 -0
  36. data/lib/qpid_messaging/errors.rb +33 -0
  37. data/lib/qpid_messaging/message.rb +368 -0
  38. data/lib/qpid_messaging/receiver.rb +184 -0
  39. data/lib/qpid_messaging/sender.rb +152 -0
  40. data/lib/qpid_messaging/session.rb +269 -0
  41. data/lib/qpid_messaging/version.rb +33 -0
  42. data/spec/qpid/address_spec.rb +87 -0
  43. data/spec/qpid/connection_spec.rb +191 -0
  44. data/spec/qpid/duration_spec.rb +56 -0
  45. data/spec/qpid/encoding_spec.rb +63 -0
  46. data/spec/qpid/message_spec.rb +292 -0
  47. data/spec/qpid/receiver_spec.rb +170 -0
  48. data/spec/qpid/sender_spec.rb +135 -0
  49. data/spec/qpid/session_spec.rb +353 -0
  50. data/spec/spec_helper.rb +20 -0
  51. metadata +106 -0
@@ -0,0 +1,20 @@
1
+ #
2
+ # Licensed to the Apache Software Foundation (ASF) under one
3
+ # or more contributor license agreements. See the NOTICE file
4
+ # distributed with this work for additional information
5
+ # regarding copyright ownership. The ASF licenses this file
6
+ # to you under the Apache License, Version 2.0 (the
7
+ # "License"); you may not use this file except in compliance
8
+ # with the License. You may obtain a copy of the License at
9
+ #
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
+ #
12
+ # Unless required by applicable law or agreed to in writing,
13
+ # software distributed under the License is distributed on an
14
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15
+ # KIND, either express or implied. See the License for the
16
+ # specific language governing permissions and limitations
17
+ # under the License.
18
+ #
19
+
20
+ require 'qpid_messaging'
metadata ADDED
@@ -0,0 +1,106 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: qpid_messaging
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.16.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Darryl L. Pierce
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-07-19 00:00:00.000000000 Z
13
+ dependencies: []
14
+ description: ! 'The Qpid messaging gem provides Ruby language bindings for the Apache
15
+ Qpid
16
+
17
+ cross-platform Enterprise Messaging system
18
+
19
+ '
20
+ email: dpierce@redhat.com
21
+ executables: []
22
+ extensions:
23
+ - ext/cqpid/extconf.rb
24
+ extra_rdoc_files: []
25
+ files:
26
+ - LICENSE
27
+ - README.rdoc
28
+ - Rakefile
29
+ - TODO
30
+ - lib/qpid_messaging/encoding.rb
31
+ - lib/qpid_messaging/session.rb
32
+ - lib/qpid_messaging/version.rb
33
+ - lib/qpid_messaging/connection.rb
34
+ - lib/qpid_messaging/message.rb
35
+ - lib/qpid_messaging/receiver.rb
36
+ - lib/qpid_messaging/duration.rb
37
+ - lib/qpid_messaging/errors.rb
38
+ - lib/qpid_messaging/address.rb
39
+ - lib/qpid_messaging/sender.rb
40
+ - lib/qpid_messaging.rb
41
+ - examples/client.rb
42
+ - examples/map_receiver.rb
43
+ - examples/map_sender.rb
44
+ - examples/server.rb
45
+ - examples/drain.rb
46
+ - examples/hello_world.rb
47
+ - examples/spout.rb
48
+ - ext/cqpid/cqpid.cpp
49
+ - ext/cqpid/extconf.rb
50
+ - features/step_definitions/sender_steps.rb
51
+ - features/step_definitions/address_steps.rb
52
+ - features/step_definitions/connection_steps.rb
53
+ - features/step_definitions/session_steps.rb
54
+ - features/step_definitions/receiver_steps.rb
55
+ - features/session_returns_its_connection.feature
56
+ - features/closing_a_session.feature
57
+ - features/support/env.rb
58
+ - features/getting_the_connections_authenticated_username.feature
59
+ - features/creating_a_receiver.feature
60
+ - features/creating_a_session.feature
61
+ - features/closing_a_connection.feature
62
+ - features/sending_a_message.feature
63
+ - features/connecting_to_a_broker.feature
64
+ - features/sessions_have_names.feature
65
+ - features/creating_a_sender.feature
66
+ - features/receiving_a_message.feature
67
+ - spec/qpid/connection_spec.rb
68
+ - spec/qpid/message_spec.rb
69
+ - spec/qpid/duration_spec.rb
70
+ - spec/qpid/address_spec.rb
71
+ - spec/qpid/encoding_spec.rb
72
+ - spec/qpid/receiver_spec.rb
73
+ - spec/qpid/session_spec.rb
74
+ - spec/qpid/sender_spec.rb
75
+ - spec/spec_helper.rb
76
+ homepage: http://qpid.apache.org
77
+ licenses:
78
+ - ASL
79
+ post_install_message:
80
+ rdoc_options:
81
+ - --title
82
+ - Qpid Messaging Framework
83
+ - --main
84
+ - README.rdoc
85
+ - --line-numbers
86
+ require_paths:
87
+ - lib
88
+ required_ruby_version: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ! '>='
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ required_rubygems_version: !ruby/object:Gem::Requirement
95
+ none: false
96
+ requirements:
97
+ - - ! '>='
98
+ - !ruby/object:Gem::Version
99
+ version: '0'
100
+ requirements: []
101
+ rubyforge_project: qpid_messaging
102
+ rubygems_version: 1.8.24
103
+ signing_key:
104
+ specification_version: 3
105
+ summary: Ruby language bindings for the Qpid messaging framework
106
+ test_files: []