rubywmq 2.1.0 → 2.1.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b802e25f55b180913d83383fa1677fde31a954c3
4
- data.tar.gz: 366ed87e4148c86ba88e4fea59145335c089aa98
3
+ metadata.gz: 38d9ec05f6a6f79c8439ea0c1d49c4fcfcfe2baf
4
+ data.tar.gz: 30e978cd829533f29b588b83dd15e700412bb035
5
5
  SHA512:
6
- metadata.gz: cef09bb323a8a79f7aa6cc2e79dd8240419c94589d02b59bfe7b1859d398bef6c1b1d3afe0a19e0088588d1a2a2ac4c18a8260d32743cfad5484dbbbec11b023
7
- data.tar.gz: 2d5747bafe54f8700e1ba61ec5a6a64cfa5cb412f78e387fa89551ed162bdd494cb826c556804b0a735c67045d4e1014207ad491fb75eb989659089f79ac73e0
6
+ metadata.gz: c773bcbd06c989bdccf4e61e2d4edf7a65f348efc43ee2486a17399235298f1f8d03392d37476d029b400ce2c3fc291839a73b5a685dcf083e63478fe2a4d8cb
7
+ data.tar.gz: b4c075ad812d946215fe9c2577a956128dfaca9a686693f82da6fc0f8c34b130f51c90c940535e8317f350c65f9a9a7f66bc8ce1cea9ca12fcffa01f26c2c415
@@ -1,24 +1,24 @@
1
1
  PATH
2
- remote: /
2
+ remote: .
3
3
  specs:
4
- rubywmq (2.1.0)
4
+ rubywmq (2.1.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
9
  ansi (1.5.0)
10
- awesome_print (1.6.1)
10
+ awesome_print (1.7.0)
11
11
  builder (3.2.2)
12
- minitest (5.7.0)
13
- minitest-reporters (1.0.19)
12
+ minitest (5.9.1)
13
+ minitest-reporters (1.1.12)
14
14
  ansi
15
15
  builder
16
16
  minitest (>= 5.0)
17
17
  ruby-progressbar
18
18
  minitest-stub_any_instance (1.0.1)
19
- rake (10.4.2)
20
- ruby-progressbar (1.7.5)
21
- shoulda-context (1.2.1)
19
+ rake (11.3.0)
20
+ ruby-progressbar (1.8.1)
21
+ shoulda-context (1.2.2)
22
22
 
23
23
  PLATFORMS
24
24
  ruby
@@ -34,4 +34,4 @@ DEPENDENCIES
34
34
  shoulda-context
35
35
 
36
36
  BUNDLED WITH
37
- 1.10.6
37
+ 1.12.5
data/README.md CHANGED
@@ -4,6 +4,12 @@ RubyWMQ is a high performance native Ruby interface into WebSphere MQ.
4
4
 
5
5
  * http://github.com/reidmorrison/rubywmq
6
6
 
7
+ ### Project Status
8
+
9
+ RubyWMQ is now in _maintenance mode_. It is not under active development but pull requests are very much welcome. Just be sure to include tests!
10
+
11
+ Note: IBM MQSeries encryption is not supported. Pull requests with this feature are welcome!
12
+
7
13
  ### Features
8
14
 
9
15
  The Ruby WMQ interface currently supports the following features:
@@ -815,7 +815,7 @@ VALUE QueueManager_put(VALUE self, VALUE hash)
815
815
  {
816
816
  WMQ_HASH2MQCHARS(q_name, q_mgr_name, od.ObjectQMgrName)
817
817
 
818
- q_name = rb_hash_aref(val, ID2SYM(ID_q_name));
818
+ q_name = rb_hash_aref(q_name, ID2SYM(ID_q_name));
819
819
  if (NIL_P(q_name))
820
820
  {
821
821
  rb_raise(rb_eArgError,
@@ -64,11 +64,15 @@ module WMQ
64
64
  reply.descriptor[:msg_id] = request.descriptor[:msg_id]
65
65
  end
66
66
 
67
- parms[:q_name] = request.descriptor[:reply_to_q]
68
- parms[:q_mgr_name]= request.descriptor[:reply_to_q_mgr]
69
- return put(parms)
67
+ q_name = {
68
+ q_name: request.descriptor[:reply_to_q],
69
+ q_mgr_name: request.descriptor[:reply_to_q_mgr]
70
+ }
71
+
72
+ parms[:q_name] = q_name
73
+ put(parms)
70
74
  else
71
- return false
75
+ false
72
76
  end
73
77
  end
74
78
 
@@ -1,3 +1,3 @@
1
1
  module WMQ #:nodoc
2
- VERSION = '2.1.0'
2
+ VERSION = '2.1.1'
3
3
  end
@@ -29,7 +29,7 @@ Gem::Specification.new do |s|
29
29
  s.description = 'RubyWMQ is a high performance native Ruby interface into WebSphere MQ.'
30
30
  s.files = Rake::FileList['./**/*'].exclude(*excludes).map { |f| f.sub(/^\.\//, '') } + ['.document']
31
31
  s.test_files = Dir['test/**/*']
32
- s.license = 'Apache License V2.0'
32
+ s.license = 'Apache-2.0'
33
33
  s.has_rdoc = true
34
34
  s.extensions << 'ext/extconf.rb'
35
35
  s.requirements << 'WebSphere MQ v5.3, v6 or v7 Client or Server with Development Kit'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubywmq
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.0
4
+ version: 2.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Reid Morrison
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-08-18 00:00:00.000000000 Z
11
+ date: 2016-11-08 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: RubyWMQ is a high performance native Ruby interface into WebSphere MQ.
14
14
  email:
@@ -72,7 +72,7 @@ files:
72
72
  - test/test_helper.rb
73
73
  homepage: https://github.com/reidmorrison/rubywmq
74
74
  licenses:
75
- - Apache License V2.0
75
+ - Apache-2.0
76
76
  metadata: {}
77
77
  post_install_message:
78
78
  rdoc_options: []
@@ -91,7 +91,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
91
91
  requirements:
92
92
  - WebSphere MQ v5.3, v6 or v7 Client or Server with Development Kit
93
93
  rubyforge_project:
94
- rubygems_version: 2.4.8
94
+ rubygems_version: 2.5.1
95
95
  signing_key:
96
96
  specification_version: 4
97
97
  summary: Native Ruby interface into WebSphere MQ