qpid_messaging 0.18.1 → 0.18.2

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 CHANGED
@@ -29,7 +29,6 @@ require "rubygems/package_task"
29
29
 
30
30
  require "rake/clean"
31
31
  require "rake/extensiontask"
32
- require "rake/rdoctask"
33
32
  require "rdoc/task"
34
33
  require "rake/testtask"
35
34
 
@@ -46,8 +45,8 @@ load "./lib/qpid_messaging/version.rb"
46
45
 
47
46
  NAME = "qpid_messaging"
48
47
  # VERSION = Qpid::VERSION
49
- AUTHOR = "Darryl L. Pierce"
50
- EMAIL = "dpierce@redhat.com"
48
+ AUTHOR = "Apache Qpid Project"
49
+ EMAIL = "dev@qpid.apache.org"
51
50
  HOMEPAGE = "http://qpid.apache.org"
52
51
  SUMMARY = "Qpid is an enterprise messaging framework."
53
52
 
@@ -64,7 +63,7 @@ task :test => :"test:all"
64
63
  namespace :test do
65
64
 
66
65
  desc "Run RSpec tests."
67
- Spec::Rake::SpecTask.new do |t|
66
+ RSpec::Core::RakeTask.new do |t|
68
67
  t.ruby_opts = ['-rtest/unit']
69
68
  t.rcov = false
70
69
  t.rcov_opts = [
@@ -116,7 +115,6 @@ spec = Gem::Specification.new do |s|
116
115
  # DEPRECATED s.autorequire = NAME
117
116
  s.files = FileList["LICENSE",
118
117
  "README.rdoc",
119
- "ChangeLog",
120
118
  "Rakefile",
121
119
  "TODO",
122
120
  "lib/**/*.rb",
data/TODO CHANGED
@@ -1,11 +1,7 @@
1
- Qpid Ruby bindings TODO List
2
- ========================================================================
1
+ TODO Items
2
+ -----------------------------------------------------------------------------
3
3
 
4
- Beyond this simple laundry list, you can find the list of bugs and
5
- enhancements to be fixed by going to the Apache Qpid JIRA instance:
4
+ Version 0.11.0:
5
+ * Deliver the Ruby bindings as a gem.
6
+ * Rework the blocking tasks to not bring the main thread to a halt.
6
7
 
7
- https://issues.apache.org/jira/browse/QPID
8
-
9
- Fixes & Improvements
10
- ========================================================================
11
- * Rework the blocking tasks to not bring the main thread to a halt.
data/ext/cqpid/cqpid.cpp CHANGED
@@ -1,6 +1,6 @@
1
1
  /* ----------------------------------------------------------------------------
2
2
  * This file was automatically generated by SWIG (http://www.swig.org).
3
- * Version 2.0.7
3
+ * Version 2.0.8
4
4
  *
5
5
  * This file is not intended to be easily readable and contains a number of
6
6
  * coding conventions designed to improve portability and efficiency. Do not make
@@ -1844,7 +1844,7 @@ static VALUE mCqpid;
1844
1844
  #define SWIG_RUBY_THREAD_END_BLOCK
1845
1845
 
1846
1846
 
1847
- #define SWIGVERSION 0x020007
1847
+ #define SWIGVERSION 0x020008
1848
1848
  #define SWIG_VERSION SWIGVERSION
1849
1849
 
1850
1850
 
@@ -2012,7 +2012,7 @@ SWIG_ruby_failed(void)
2012
2012
  }
2013
2013
 
2014
2014
 
2015
- /*@SWIG:/usr/share/swig/2.0.7/ruby/rubyprimtypes.swg,19,%ruby_aux_method@*/
2015
+ /*@SWIG:/usr/share/swig/2.0.8/ruby/rubyprimtypes.swg,19,%ruby_aux_method@*/
2016
2016
  SWIGINTERN VALUE SWIG_AUX_NUM2ULONG(VALUE *args)
2017
2017
  {
2018
2018
  VALUE obj = args[0];
@@ -2061,7 +2061,7 @@ SWIG_AsVal_size_t (VALUE obj, size_t *val)
2061
2061
  #endif
2062
2062
 
2063
2063
 
2064
- /*@SWIG:/usr/share/swig/2.0.7/ruby/rubyprimtypes.swg,19,%ruby_aux_method@*/
2064
+ /*@SWIG:/usr/share/swig/2.0.8/ruby/rubyprimtypes.swg,19,%ruby_aux_method@*/
2065
2065
  SWIGINTERN VALUE SWIG_AUX_NUM2LONG(VALUE *args)
2066
2066
  {
2067
2067
  VALUE obj = args[0];
@@ -9540,8 +9540,7 @@ SWIG_InitializeModule(void *clientdata) {
9540
9540
  size_t i;
9541
9541
  swig_module_info *module_head, *iter;
9542
9542
  int found, init;
9543
-
9544
- clientdata = clientdata;
9543
+ (void *)clientdata;
9545
9544
 
9546
9545
  /* check to see if the circular list has been setup, if not, set it up */
9547
9546
  if (swig_module.next==0) {
data/ext/cqpid/extconf.rb CHANGED
@@ -26,9 +26,10 @@
26
26
  require 'mkmf'
27
27
 
28
28
  # Setup the build environment.
29
- $CFLAGS = "-fPIC -fno-inline -x c++"
29
+ $CFLAGS = "-fPIC -fno-inline -x c++ -lstdc++"
30
30
 
31
31
  REQUIRED_LIBRARIES = [
32
+ 'stdc++',
32
33
  'qpidclient',
33
34
  'qpidcommon',
34
35
  'qpidmessaging',
@@ -17,6 +17,8 @@
17
17
  # under the License.
18
18
  #
19
19
 
20
+ require 'cqpid'
21
+
20
22
  module Qpid
21
23
 
22
24
  module Messaging
@@ -17,6 +17,8 @@
17
17
  # under the License.
18
18
  #
19
19
 
20
+ require 'cqpid'
21
+
20
22
  module Qpid
21
23
 
22
24
  module Messaging
@@ -17,6 +17,8 @@
17
17
  # under the License.
18
18
  #
19
19
 
20
+ require 'cqpid'
21
+
20
22
  module Qpid
21
23
 
22
24
  module Messaging
@@ -17,6 +17,8 @@
17
17
  # under the License.
18
18
  #
19
19
 
20
+ require 'cqpid'
21
+
20
22
  module Qpid
21
23
 
22
24
  module Messaging
@@ -17,6 +17,8 @@
17
17
  # under the License.
18
18
  #
19
19
 
20
+ require 'cqpid'
21
+
20
22
  module Qpid
21
23
 
22
24
  module Messaging
@@ -17,6 +17,10 @@
17
17
  # under the License.
18
18
  #
19
19
 
20
+ require 'cqpid'
21
+
22
+ require 'qpid/duration'
23
+
20
24
  module Qpid
21
25
 
22
26
  module Messaging
@@ -17,6 +17,10 @@
17
17
  # under the License.
18
18
  #
19
19
 
20
+ require 'cqpid'
21
+
22
+ require 'qpid/errors'
23
+
20
24
  module Qpid
21
25
 
22
26
  module Messaging
@@ -23,7 +23,7 @@ module Qpid #:nodoc:
23
23
 
24
24
  NUMBERS = [MAJOR = 0,
25
25
  MINOR = 18,
26
- BUILD = 1]
26
+ BUILD = 2]
27
27
  end
28
28
 
29
29
  VERSION = Version::NUMBERS.join('.')
@@ -17,8 +17,6 @@
17
17
  # under the License.
18
18
  #
19
19
 
20
- require 'cqpid'
21
-
22
20
  require 'qpid_messaging/errors'
23
21
  require 'qpid_messaging/duration'
24
22
  require 'qpid_messaging/address'
metadata CHANGED
@@ -1,18 +1,18 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: qpid_messaging
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.18.1
4
+ version: 0.18.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
8
- - Darryl L. Pierce
8
+ - Apache Qpid Project
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-09-24 00:00:00.000000000 Z
12
+ date: 2012-12-07 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: Qpid is an enterprise messaging framework.
15
- email: dpierce@redhat.com
15
+ email: dev@qpid.apache.org
16
16
  executables: []
17
17
  extensions:
18
18
  - ext/cqpid/extconf.rb
@@ -21,7 +21,6 @@ extra_rdoc_files:
21
21
  files:
22
22
  - LICENSE
23
23
  - README.rdoc
24
- - ChangeLog
25
24
  - Rakefile
26
25
  - TODO
27
26
  - lib/qpid_messaging/encoding.rb
data/ChangeLog DELETED
@@ -1,9 +0,0 @@
1
- version 0.18 (24 September 2012):
2
- * Renamed gemfile (retroactively) to qpid_messaging.
3
- * Added more details to the Rdoc data.
4
- * Corrected dependencies on cqpid.
5
- * Fixes for Ruby 1.9.
6
- - Fixed string encodings.
7
- - Removed trailing colons from conditions.
8
- * Removed the Boost license text.
9
- * Cleans up queues after running Cucumber tests.