stomp 1.4.6 → 1.4.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7c814395091688edc6d4c400dea004f855feb2b7f53f9a20ca080b2876e570e5
4
- data.tar.gz: b7cec9807723d92292e565b2864909b6ef332ceb931a050745b36fb1b6ee0f14
3
+ metadata.gz: c522e1ef42b07f7c2e8b6249db610f171dde8f8c7a593e1f9bd146c41085c122
4
+ data.tar.gz: ba93ed4e01d681093fa36794b1703478ea54275fecf7472fecbf40651a2ac69f
5
5
  SHA512:
6
- metadata.gz: e2305dac6286107dae1328aebad529e7960d2bc7d95ebc9cbcdea57395df4a1e28f28965a50a4735ba2d5b6f6d85a1f3847ceb93d7b801d9aca940c2b4a8ef7c
7
- data.tar.gz: 74923725f94122d707defb178107f5d90c77a16d3e2f1741ac771bafa863d26911db287b61f12c1e7332f2ae02ac25375c449528ddcf85875eed582796ba8e74
6
+ metadata.gz: 1f29dad885daf7b54f1e16182e0ad8c13f16a5c13bb32955a98068b94c5796e88217d35280079f46acb3fbb26b6873043ff76c7e2259a4037840c0b668426f53
7
+ data.tar.gz: b6df90be887426860f8f2d66d0ab36347b375f04a6a1822c848bb072a9c44ef838556d08e02f890ecdd2c533bf183f7dc759f1399a1168fa32a47bbdb726b618
@@ -1,5 +1,12 @@
1
1
  # Stomp Gem Change Log
2
2
 
3
+ ## 1.4.7 20181210
4
+
5
+ * Support SSL cert/key in text format.
6
+ * Test adjustments for Artemis
7
+ * Correct missing variable name
8
+ * Fix Ruby 2.6 test indentation warning
9
+
3
10
  ## 1.4.6 20181105
4
11
 
5
12
  * Fix broken JRuby support. Issue #153.
data/README.md CHANGED
@@ -292,7 +292,7 @@ Thiago Morello
292
292
  2009-12-25
293
293
  </td>
294
294
  <td style="border: 1px solid black;padding-left: 10px;" >
295
- (0364)
295
+ (0362)
296
296
  </td>
297
297
  <td style="border: 1px solid black;padding-left: 10px;" >
298
298
  <span style="font-weight: bold;" >
@@ -320,7 +320,7 @@ Rafael Rosa
320
320
  2010-03-23
321
321
  </td>
322
322
  <td style="border: 1px solid black;padding-left: 10px;" >
323
- (0087)
323
+ (0092)
324
324
  </td>
325
325
  <td style="border: 1px solid black;padding-left: 10px;" >
326
326
  <span style="font-weight: bold;" >
@@ -805,5 +805,18 @@ Meg Richards
805
805
  / &lt;mouse@cmu.edu&gt;
806
806
  </td>
807
807
  </tr>
808
+ <tr>
809
+ <td style="border: 1px solid black;padding-left: 10px;" >
810
+ 2018-11-19
811
+ </td>
812
+ <td style="border: 1px solid black;padding-left: 10px;" >
813
+ (0003)
814
+ </td>
815
+ <td style="border: 1px solid black;padding-left: 10px;" >
816
+ <span style="font-weight: bold;" >
817
+ Katharine
818
+ </span>
819
+ / &lt;krsibbald@gmail.com&gt;
820
+ </td>
821
+ </tr>
808
822
  </table>
809
-
data/Rakefile CHANGED
@@ -33,7 +33,7 @@ begin
33
33
  gem.version = Stomp::Version::STRING
34
34
  gem.summary = %Q{Ruby client for the Stomp messaging protocol}
35
35
  gem.license = "Apache-2.0"
36
- gem.description = %Q{Ruby client for the Stomp messaging protocol. Note that this gem is no longer supported on rubyforge.}
36
+ gem.description = %Q{Ruby client for the Stomp messaging protocol.}
37
37
  gem.email = ["brianm@apache.org", 'marius@stones.com', 'morellon@gmail.com',
38
38
  'allard.guy.m@gmail.com' ]
39
39
  gem.homepage = "https://github.com/stompgem/stomp"
@@ -6,8 +6,8 @@ module Stomp
6
6
  module Version #:nodoc: all
7
7
  MAJOR = 1
8
8
  MINOR = 4
9
- PATCH = 6
10
- # PATCH = "6.plvl.001"
9
+ PATCH = 7
10
+ # PATCH = "7.plvl.001"
11
11
  STRING = "#{MAJOR}.#{MINOR}.#{PATCH}"
12
12
  end
13
13
  end
@@ -2,17 +2,17 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: stomp 1.4.6 ruby lib
5
+ # stub: stomp 1.4.7 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "stomp".freeze
9
- s.version = "1.4.6"
9
+ s.version = "1.4.7"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ["lib".freeze]
13
13
  s.authors = ["Brian McCallister".freeze, "Marius Mathiesen".freeze, "Thiago Morello".freeze, "Guy M. Allard".freeze]
14
- s.date = "2018-11-05"
15
- s.description = "Ruby client for the Stomp messaging protocol. Note that this gem is no longer supported on rubyforge.".freeze
14
+ s.date = "2018-12-10"
15
+ s.description = "Ruby client for the Stomp messaging protocol.".freeze
16
16
  s.email = ["brianm@apache.org".freeze, "marius@stones.com".freeze, "morellon@gmail.com".freeze, "allard.guy.m@gmail.com".freeze]
17
17
  s.executables = ["catstomp".freeze, "stompcat".freeze]
18
18
  s.extra_rdoc_files = [
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.6
4
+ version: 1.4.7
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: 2018-11-05 00:00:00.000000000 Z
14
+ date: 2018-12-10 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: rspec
@@ -33,8 +33,7 @@ dependencies:
33
33
  - - "~>"
34
34
  - !ruby/object:Gem::Version
35
35
  version: '2.14'
36
- description: Ruby client for the Stomp messaging protocol. Note that this gem is
37
- no longer supported on rubyforge.
36
+ description: Ruby client for the Stomp messaging protocol.
38
37
  email:
39
38
  - brianm@apache.org
40
39
  - marius@stones.com