stomp_out 0.1.2 → 0.1.3

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
  SHA1:
3
- metadata.gz: 0cc602c974a465dd13ce66f3592b59a822521816
4
- data.tar.gz: 3f296599ba021a4c246b162e6742b29ebe96f087
3
+ metadata.gz: dba12626faff1bf7581348b442512646a7740dcd
4
+ data.tar.gz: 0bebffd24cb1cbd87a05a9c8a343deedb4324581
5
5
  SHA512:
6
- metadata.gz: 922df4ff83adace96a0efd77f3b064eae0f25911bac2c645b26a16ee53616293da29767d81b945b00d1b68164a3e959778ab160046e5fdf4b0292d2722f26c45
7
- data.tar.gz: 3518eb6cf0c298d801f0921f5758d4fbf259813fe3d76164edb5d9ca61aa599ecc13a0d951a8d15bce4c543b3d12a675640c58a535f173cc9ef635d200e81f08
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.2
1
+ 0.1.3
@@ -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*(\S+)\s*:\s*(.*?\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.2 ruby lib
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.2"
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-09"
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.2
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-09 00:00:00.000000000 Z
11
+ date: 2015-02-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json