stomp 1.4.3 → 1.4.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -38,16 +38,10 @@ class TestSSL < Test::Unit::TestCase
38
38
 
39
39
  # Test using correct parameters.
40
40
  def test_ssl_0020_noraise
41
- assert_nothing_raised {
42
- _ = Stomp::SSLParams.new(:cert_file => "dummy1", :key_file => "dummy2")
43
- }
44
- assert_nothing_raised {
45
- _ = Stomp::SSLParams.new(:ts_files => "dummyts1")
46
- }
47
- assert_nothing_raised {
48
- _ = Stomp::SSLParams.new(:ts_files => "dummyts1",
49
- :cert_file => "dummy1", :key_file => "dummy2")
50
- }
41
+ _ = Stomp::SSLParams.new(:cert_file => "dummy1", :key_file => "dummy2")
42
+ _ = Stomp::SSLParams.new(:ts_files => "dummyts1")
43
+ _ = Stomp::SSLParams.new(:ts_files => "dummyts1",
44
+ :cert_file => "dummy1", :key_file => "dummy2")
51
45
  end
52
46
 
53
47
  # Test using incorrect / incomplete parameters.
@@ -6,11 +6,12 @@ cmd_base=$(dirname $0)
6
6
  source $cmd_base/funcs.sh
7
7
  # ------------------------------------------------------------------------------
8
8
  pushd $cmd_base
9
+ RUN=${RUBY:-ruby}
9
10
  slist=$(ls -1 *.rb | grep -v helper | grep -v 1method)
10
11
  for rbf in $slist
11
12
  do
12
- echo "ruby -I ../lib ${rbf}"
13
- ruby -I ../lib $rbf
13
+ echo "${RUN} -I ../lib ${rbf}"
14
+ $RUN -I ../lib $rbf
14
15
  done
15
16
  # ------------------------------------------------------------------------------
16
17
  popd
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stomp
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.3
4
+ version: 1.4.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian McCallister
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2016-08-21 00:00:00.000000000 Z
14
+ date: 2017-06-11 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: rspec
@@ -64,6 +64,9 @@ files:
64
64
  - bin/catstomp
65
65
  - bin/stompcat
66
66
  - examples/amqdurasub.rb
67
+ - examples/artemis/artlogger.rb
68
+ - examples/artemis/cliwaiter_not_reliable.rb
69
+ - examples/artemis/cliwaiter_reliable.rb
67
70
  - examples/client11_ex1.rb
68
71
  - examples/client11_putget1.rb
69
72
  - examples/conn11_ex1.rb
@@ -124,6 +127,7 @@ files:
124
127
  - spec/spec_helper.rb
125
128
  - stomp.gemspec
126
129
  - test/.gitignore
130
+ - test/MultiBrokerUnitTestExample.sh
127
131
  - test/funcs.sh
128
132
  - test/test_anonymous.rb
129
133
  - test/test_client.rb
@@ -156,7 +160,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
156
160
  version: '0'
157
161
  requirements: []
158
162
  rubyforge_project:
159
- rubygems_version: 2.5.1
163
+ rubygems_version: 2.6.11
160
164
  signing_key:
161
165
  specification_version: 4
162
166
  summary: Ruby client for the Stomp messaging protocol