qpid_messaging 0.18.2 → 0.18.3
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.
- data/Rakefile +0 -39
- data/lib/qpid_messaging.rb +1 -1
- data/lib/qpid_messaging/address.rb +0 -2
- data/lib/qpid_messaging/connection.rb +0 -2
- data/lib/qpid_messaging/duration.rb +0 -2
- data/lib/qpid_messaging/encoding.rb +0 -2
- data/lib/qpid_messaging/message.rb +0 -2
- data/lib/qpid_messaging/receiver.rb +0 -4
- data/lib/qpid_messaging/session.rb +0 -4
- data/lib/qpid_messaging/version.rb +1 -1
- data/spec/{qpid → qpid_messaging}/address_spec.rb +0 -0
- data/spec/{qpid → qpid_messaging}/connection_spec.rb +0 -0
- data/spec/{qpid → qpid_messaging}/duration_spec.rb +0 -0
- data/spec/{qpid → qpid_messaging}/encoding_spec.rb +0 -0
- data/spec/{qpid → qpid_messaging}/message_spec.rb +0 -0
- data/spec/{qpid → qpid_messaging}/receiver_spec.rb +0 -0
- data/spec/{qpid → qpid_messaging}/sender_spec.rb +0 -0
- data/spec/{qpid → qpid_messaging}/session_spec.rb +0 -0
- metadata +31 -31
data/Rakefile
CHANGED
@@ -33,7 +33,6 @@ require "rdoc/task"
|
|
33
33
|
require "rake/testtask"
|
34
34
|
|
35
35
|
require "cucumber/rake/task"
|
36
|
-
require "rspec/core/rake_task"
|
37
36
|
|
38
37
|
CLOBBER.include("pkg")
|
39
38
|
|
@@ -56,44 +55,6 @@ task :default => :test
|
|
56
55
|
desc "Runs all tests."
|
57
56
|
task :test => :"test:all"
|
58
57
|
|
59
|
-
#---------------
|
60
|
-
# Testing tasks.
|
61
|
-
#---------------
|
62
|
-
|
63
|
-
namespace :test do
|
64
|
-
|
65
|
-
desc "Run RSpec tests."
|
66
|
-
RSpec::Core::RakeTask.new do |t|
|
67
|
-
t.ruby_opts = ['-rtest/unit']
|
68
|
-
t.rcov = false
|
69
|
-
t.rcov_opts = [
|
70
|
-
'--exclude', 'lib\/qpid_messaging.rb,spec\/,lib\/ruby',
|
71
|
-
]
|
72
|
-
end
|
73
|
-
|
74
|
-
desc "Run all tests (default)."
|
75
|
-
task :all => [:spec, :features]
|
76
|
-
|
77
|
-
Cucumber::Rake::Task.new(:features) do |t|
|
78
|
-
t.libs = ["lib", "ext/nonblockio"]
|
79
|
-
t.cucumber_opts = "--format progress"
|
80
|
-
end
|
81
|
-
|
82
|
-
end
|
83
|
-
|
84
|
-
#---------------------
|
85
|
-
# Documentation tasks.
|
86
|
-
#---------------------
|
87
|
-
|
88
|
-
Rake::RDocTask.new(:rdoc => "rdoc",
|
89
|
-
:clobber_rdoc => "rdoc:clean",
|
90
|
-
:rerdoc => "rdoc:force") do |rd|
|
91
|
-
rd.main = "README.rdoc"
|
92
|
-
rd.options << "--all"
|
93
|
-
rd.rdoc_files.include("README.rdoc", "lib/**/*.rb")
|
94
|
-
rd.title = "Qpid Messaging Documentation"
|
95
|
-
end
|
96
|
-
|
97
58
|
#-----------------
|
98
59
|
# Package the gem.
|
99
60
|
#-----------------
|
data/lib/qpid_messaging.rb
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: qpid_messaging
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.18.
|
4
|
+
version: 0.18.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2013-01-28 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: Qpid is an enterprise messaging framework.
|
15
15
|
email: dev@qpid.apache.org
|
@@ -23,51 +23,51 @@ files:
|
|
23
23
|
- README.rdoc
|
24
24
|
- Rakefile
|
25
25
|
- TODO
|
26
|
-
- lib/qpid_messaging
|
27
|
-
- lib/qpid_messaging/
|
28
|
-
- lib/qpid_messaging/version.rb
|
26
|
+
- lib/qpid_messaging.rb
|
27
|
+
- lib/qpid_messaging/address.rb
|
29
28
|
- lib/qpid_messaging/connection.rb
|
30
|
-
- lib/qpid_messaging/message.rb
|
31
|
-
- lib/qpid_messaging/receiver.rb
|
32
29
|
- lib/qpid_messaging/duration.rb
|
30
|
+
- lib/qpid_messaging/encoding.rb
|
33
31
|
- lib/qpid_messaging/errors.rb
|
34
|
-
- lib/qpid_messaging/
|
32
|
+
- lib/qpid_messaging/message.rb
|
33
|
+
- lib/qpid_messaging/receiver.rb
|
35
34
|
- lib/qpid_messaging/sender.rb
|
36
|
-
- lib/qpid_messaging.rb
|
35
|
+
- lib/qpid_messaging/session.rb
|
36
|
+
- lib/qpid_messaging/version.rb
|
37
37
|
- examples/client.rb
|
38
|
+
- examples/drain.rb
|
39
|
+
- examples/hello_world.rb
|
38
40
|
- examples/map_receiver.rb
|
39
41
|
- examples/map_sender.rb
|
40
42
|
- examples/server.rb
|
41
|
-
- examples/drain.rb
|
42
|
-
- examples/hello_world.rb
|
43
43
|
- examples/spout.rb
|
44
44
|
- ext/cqpid/cqpid.cpp
|
45
45
|
- ext/cqpid/extconf.rb
|
46
|
-
- features/
|
47
|
-
- features/step_definitions/address_steps.rb
|
48
|
-
- features/step_definitions/connection_steps.rb
|
49
|
-
- features/step_definitions/session_steps.rb
|
50
|
-
- features/step_definitions/receiver_steps.rb
|
51
|
-
- features/session_returns_its_connection.feature
|
46
|
+
- features/closing_a_connection.feature
|
52
47
|
- features/closing_a_session.feature
|
53
|
-
- features/
|
54
|
-
- features/getting_the_connections_authenticated_username.feature
|
48
|
+
- features/connecting_to_a_broker.feature
|
55
49
|
- features/creating_a_receiver.feature
|
50
|
+
- features/creating_a_sender.feature
|
56
51
|
- features/creating_a_session.feature
|
57
|
-
- features/
|
52
|
+
- features/getting_the_connections_authenticated_username.feature
|
53
|
+
- features/receiving_a_message.feature
|
58
54
|
- features/sending_a_message.feature
|
59
|
-
- features/
|
55
|
+
- features/session_returns_its_connection.feature
|
60
56
|
- features/sessions_have_names.feature
|
61
|
-
- features/
|
62
|
-
- features/
|
63
|
-
-
|
64
|
-
-
|
65
|
-
-
|
66
|
-
-
|
67
|
-
- spec/
|
68
|
-
- spec/
|
69
|
-
- spec/
|
70
|
-
- spec/
|
57
|
+
- features/step_definitions/address_steps.rb
|
58
|
+
- features/step_definitions/connection_steps.rb
|
59
|
+
- features/step_definitions/receiver_steps.rb
|
60
|
+
- features/step_definitions/sender_steps.rb
|
61
|
+
- features/step_definitions/session_steps.rb
|
62
|
+
- features/support/env.rb
|
63
|
+
- spec/qpid_messaging/address_spec.rb
|
64
|
+
- spec/qpid_messaging/connection_spec.rb
|
65
|
+
- spec/qpid_messaging/duration_spec.rb
|
66
|
+
- spec/qpid_messaging/encoding_spec.rb
|
67
|
+
- spec/qpid_messaging/message_spec.rb
|
68
|
+
- spec/qpid_messaging/receiver_spec.rb
|
69
|
+
- spec/qpid_messaging/sender_spec.rb
|
70
|
+
- spec/qpid_messaging/session_spec.rb
|
71
71
|
- spec/spec_helper.rb
|
72
72
|
homepage: http://qpid.apache.org
|
73
73
|
licenses: []
|