nebulous_stomp 3.0.2 → 3.0.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/.hgtags +1 -0
- data/lib/nebulous_stomp/version.rb +1 -1
- data/nebulous.gemspec +2 -1
- data/tags +1 -0
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d829397b774f8ca1f753608232eb30c093b472aa
|
|
4
|
+
data.tar.gz: 96cf42699373c6a8aa211a438070bc2ef80987fb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0462b28f99ac571c52ea71af2cc8fac798236f9241fdb8b1d674a0e17e058b09a63faa0293d1bb40799d9944c04c8524752f055214d06495ac107f61a7a97081
|
|
7
|
+
data.tar.gz: aa2a93daddef2ace0a6c8460bcd824caef96805e340b566d9aa3bb08ba378a71bfe735d4053051ac08f48dace6a73b3b52b73d0f44be9fb31bc1cf0ca93f3142
|
data/.hgtags
CHANGED
data/nebulous.gemspec
CHANGED
|
@@ -39,7 +39,8 @@ Gem::Specification.new do |spec|
|
|
|
39
39
|
spec.add_development_dependency "pry-doc"
|
|
40
40
|
spec.add_development_dependency "ripper-tags"
|
|
41
41
|
|
|
42
|
-
|
|
42
|
+
# Stomp 1.4.5 currently has issues -- 2/11/18
|
|
43
|
+
spec.add_runtime_dependency 'stomp', '1.4.4'
|
|
43
44
|
spec.add_runtime_dependency 'redis', '~>3.1'
|
|
44
45
|
spec.add_runtime_dependency 'devnull', '~>0.1'
|
|
45
46
|
|
data/tags
CHANGED
|
@@ -17,6 +17,7 @@ Nebulous lib/nebulous/stomp_handler.rb /^module Nebulous$/;" m
|
|
|
17
17
|
Nebulous lib/nebulous/stomp_handler_null.rb /^module Nebulous$/;" m
|
|
18
18
|
Nebulous lib/nebulous/version.rb /^module Nebulous$/;" m
|
|
19
19
|
NebulousError lib/nebulous.rb /^ class NebulousError < StandardError; end$/;" c class:Nebulous inherits:StandardError
|
|
20
|
+
NebulousStomp lib/nebulous_stomp/version.rb /^module NebulousStomp$/;" m
|
|
20
21
|
NebulousTimeout lib/nebulous.rb /^ class NebulousTimeout < StandardError; end$/;" c class:Nebulous inherits:StandardError
|
|
21
22
|
Param lib/nebulous/param.rb /^ module Param$/;" m class:Nebulous
|
|
22
23
|
ParamDefaults lib/nebulous/param.rb /^ ParamDefaults = { stompConnectHash: {},$/;" C class:Nebulous.Param
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: nebulous_stomp
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andy Jones
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-11-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -112,16 +112,16 @@ dependencies:
|
|
|
112
112
|
name: stomp
|
|
113
113
|
requirement: !ruby/object:Gem::Requirement
|
|
114
114
|
requirements:
|
|
115
|
-
- -
|
|
115
|
+
- - '='
|
|
116
116
|
- !ruby/object:Gem::Version
|
|
117
|
-
version:
|
|
117
|
+
version: 1.4.4
|
|
118
118
|
type: :runtime
|
|
119
119
|
prerelease: false
|
|
120
120
|
version_requirements: !ruby/object:Gem::Requirement
|
|
121
121
|
requirements:
|
|
122
|
-
- -
|
|
122
|
+
- - '='
|
|
123
123
|
- !ruby/object:Gem::Version
|
|
124
|
-
version:
|
|
124
|
+
version: 1.4.4
|
|
125
125
|
- !ruby/object:Gem::Dependency
|
|
126
126
|
name: redis
|
|
127
127
|
requirement: !ruby/object:Gem::Requirement
|