stomp_out 0.1.2 → 0.1.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.
- checksums.yaml +4 -4
- data/CHANGELOG.rdoc +5 -1
- data/VERSION +1 -1
- data/lib/stomp_out/parser.rb +1 -1
- data/stomp_out.gemspec +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dba12626faff1bf7581348b442512646a7740dcd
|
|
4
|
+
data.tar.gz: 0bebffd24cb1cbd87a05a9c8a343deedb4324581
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a4cf223250ad1953c1480fb94b1dcf9b76581d52f5f3b5204e22a20a6f2e594d4ceb39dc1448e35db883102b27d0170bd85fc4f7b463dd8c34483b1b531e2e3b
|
|
7
|
+
data.tar.gz: 8b3f8504db52b0944a4171ba776de46236f97131b14694f0760a3c92bea123cd110c4d171f4b50ae2bcdcf3db9843262c04ba8de2eaf653f9da9f9367a13fdf5
|
data/CHANGELOG.rdoc
CHANGED
|
@@ -10,4 +10,8 @@ Enabled Server#on_connect to override the session_id it is passed
|
|
|
10
10
|
=== 0.1.2 (2015-02-09)
|
|
11
11
|
|
|
12
12
|
Generate session and message IDs incrementally rather than using UUID
|
|
13
|
-
Handle acks IDs in 1.0/1.1 when message IDs not unique, e.g., on resend
|
|
13
|
+
Handle acks IDs in 1.0/1.1 when message IDs not unique, e.g., on resend
|
|
14
|
+
|
|
15
|
+
=== 0.1.3 (2015-02-13)
|
|
16
|
+
|
|
17
|
+
Fix parsing of headers whose values contain colons
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.3
|
data/lib/stomp_out/parser.rb
CHANGED
|
@@ -82,7 +82,7 @@ module StompOut
|
|
|
82
82
|
@frame.command, headers = match.captures
|
|
83
83
|
@buffer = match.post_match
|
|
84
84
|
headers.split(/\r?\n/).each do |data|
|
|
85
|
-
if data.match(/^\s*(
|
|
85
|
+
if data.match(/^\s*([^\s:]+)\s*:\s*(.*?\s*)$/)
|
|
86
86
|
@frame.headers[$1] = $2 unless @frame.headers.has_key?($1)
|
|
87
87
|
end
|
|
88
88
|
end
|
data/stomp_out.gemspec
CHANGED
|
@@ -2,16 +2,16 @@
|
|
|
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_out 0.1.
|
|
5
|
+
# stub: stomp_out 0.1.3 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "stomp_out"
|
|
9
|
-
s.version = "0.1.
|
|
9
|
+
s.version = "0.1.3"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib"]
|
|
13
13
|
s.authors = ["Lee Kirchhoff"]
|
|
14
|
-
s.date = "2015-02-
|
|
14
|
+
s.date = "2015-02-13"
|
|
15
15
|
s.description = "This implementation of STOMP is aimed at environments where a network connection, such as a WebSocket or TCP socket, is created and then raw data from that connection is passed to/from the STOMP client or server messaging layer provided by this gem."
|
|
16
16
|
s.email = "support@rightscale.com"
|
|
17
17
|
s.extra_rdoc_files = [
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: stomp_out
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Lee Kirchhoff
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-02-
|
|
11
|
+
date: 2015-02-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: json
|