symphony 0.10.0 → 0.11.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/ChangeLog +36 -2
- data/History.rdoc +8 -0
- data/Rakefile +1 -1
- data/lib/symphony.rb +2 -2
- data/lib/symphony/tasks/failure_logger.rb +4 -0
- metadata +40 -40
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c3d517c07894a44fa75d81dcc4b725e4f14d9204
|
4
|
+
data.tar.gz: 2e89e801f24826820520ca3b9518d6098a19acfc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: defea2ed9cc5d1cd2dbceff7c703f1a9b18f91a5d11c5bc02400065004552be55a024a85d71bb5f82310902f1760282da463266c45451e3e260b6ac255c0145d
|
7
|
+
data.tar.gz: ca9e31982bf79ad99d66a9e1485a040723cce291fc38a9b563fe79929e4e073c0528ca494a7b4cce74306c5fc4fd1ee4b614c984f3a02e4eed1826d7aaf2a8f6
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
Binary file
|
data/ChangeLog
CHANGED
@@ -1,9 +1,43 @@
|
|
1
|
+
2016-03-15 Mahlon E. Smith <mahlon@laika.com>
|
2
|
+
|
3
|
+
* lib/symphony/tasks/failure_logger.rb:
|
4
|
+
Disable auto rebinding for the failure logger example.
|
5
|
+
[b2a2205ff560] [tip]
|
6
|
+
|
7
|
+
2016-03-02 Michael Granger <ged@FaerieMUD.org>
|
8
|
+
|
9
|
+
* .hgtags:
|
10
|
+
Added tag v0.10.0 for changeset 49b6a34f99d9
|
11
|
+
[86c7156109bb]
|
12
|
+
|
13
|
+
* .hgsigs:
|
14
|
+
Added signature for changeset 6e4811acb073
|
15
|
+
[49b6a34f99d9] [v0.10.0]
|
16
|
+
|
17
|
+
* History.rdoc, lib/symphony.rb, symphony.gemspec:
|
18
|
+
Bump the version and update history.
|
19
|
+
[6e4811acb073]
|
20
|
+
|
21
|
+
2016-01-27 Michael Granger <ged@FaerieMUD.org>
|
22
|
+
|
23
|
+
* .gems, Rakefile, USAGE.rdoc, lib/symphony/queue.rb,
|
24
|
+
lib/symphony/routing.rb, lib/symphony/task.rb,
|
25
|
+
spec/symphony/queue_spec.rb, spec/symphony/routing_spec.rb,
|
26
|
+
spec/symphony/task_spec.rb:
|
27
|
+
Add a setting to tasks to force them to always rebind
|
28
|
+
[d4dd79e15aa1]
|
29
|
+
|
30
|
+
2015-10-30 Michael Granger <ged@FaerieMUD.org>
|
31
|
+
|
32
|
+
* Merged with a29e516eb7c7
|
33
|
+
[285d9c7783df]
|
34
|
+
|
1
35
|
2015-09-03 Michael Granger <ged@FaerieMUD.org>
|
2
36
|
|
3
37
|
* lib/symphony/statistics.rb, lib/symphony/task_group/longlived.rb,
|
4
38
|
spec/symphony/task_group/longlived_spec.rb:
|
5
39
|
Invert scaling logic to handle initial load
|
6
|
-
[fd66c7ade2b0]
|
40
|
+
[fd66c7ade2b0]
|
7
41
|
|
8
42
|
2015-07-07 Michael Granger <ged@FaerieMUD.org>
|
9
43
|
|
@@ -47,7 +81,7 @@
|
|
47
81
|
The Daemon will now load them on startup. This is so code that can
|
48
82
|
depend on Symphony without loading every configured task anytime its
|
49
83
|
config loads.
|
50
|
-
[ade5a2647590]
|
84
|
+
[ade5a2647590]
|
51
85
|
|
52
86
|
2015-06-01 Michael Granger <ged@FaerieMUD.org>
|
53
87
|
|
data/History.rdoc
CHANGED
data/Rakefile
CHANGED
@@ -26,7 +26,7 @@ hoespec = Hoe.spec 'symphony' do |spec|
|
|
26
26
|
spec.developer 'Michael Granger', 'ged@FaerieMUD.org'
|
27
27
|
spec.developer 'Mahlon E. Smith', 'mahlon@martini.nu'
|
28
28
|
|
29
|
-
spec.dependency 'configurability', '~>
|
29
|
+
spec.dependency 'configurability', '~> 3.1'
|
30
30
|
spec.dependency 'loggability', '~> 0.10'
|
31
31
|
spec.dependency 'pluggability', '~> 0.4'
|
32
32
|
spec.dependency 'bunny', '~> 2.0'
|
data/lib/symphony.rb
CHANGED
@@ -12,10 +12,10 @@ module Symphony
|
|
12
12
|
Configurability
|
13
13
|
|
14
14
|
# Library version constant
|
15
|
-
VERSION = '0.
|
15
|
+
VERSION = '0.11.0'
|
16
16
|
|
17
17
|
# Version-control revision constant
|
18
|
-
REVISION = %q$Revision:
|
18
|
+
REVISION = %q$Revision: bfb708abaa1c $
|
19
19
|
|
20
20
|
|
21
21
|
# The name of the environment variable to check for config file overrides
|
@@ -17,6 +17,10 @@ class FailureLogger < Symphony::Task
|
|
17
17
|
# Connect to a specific queue
|
18
18
|
queue_name '_failures'
|
19
19
|
|
20
|
+
# Dead letter queue needs to be preset serverside.
|
21
|
+
# We don't want to ever explicitly bind to a different (main) exchange.
|
22
|
+
always_rebind false
|
23
|
+
|
20
24
|
|
21
25
|
### Set up the output device. By default it's STDERR, but it can be anything
|
22
26
|
### that responds to #<<.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: symphony
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.11.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael Granger
|
@@ -11,27 +11,27 @@ bindir: bin
|
|
11
11
|
cert_chain:
|
12
12
|
- |
|
13
13
|
-----BEGIN CERTIFICATE-----
|
14
|
-
MIIDbDCCAlSgAwIBAgIBATANBgkqhkiG9w0BAQUFADA+
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
14
|
+
MIIDbDCCAlSgAwIBAgIBATANBgkqhkiG9w0BAQUFADA+MQ8wDQYDVQQDDAZtYWhs
|
15
|
+
b24xFzAVBgoJkiaJk/IsZAEZFgdtYXJ0aW5pMRIwEAYKCZImiZPyLGQBGRYCbnUw
|
16
|
+
HhcNMTYxMTE2MTkxMTMwWhcNMTcxMTE2MTkxMTMwWjA+MQ8wDQYDVQQDDAZtYWhs
|
17
|
+
b24xFzAVBgoJkiaJk/IsZAEZFgdtYXJ0aW5pMRIwEAYKCZImiZPyLGQBGRYCbnUw
|
18
|
+
ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDpXGN0YbMVpYv4EoiCxpQw
|
19
|
+
sxKdyhlkvpvENUkpEhbpnEuMKXgUfRHO4T/vBZf0h8eYgwnrHCRhAeIqesFKfoj9
|
20
|
+
mpEJk5JUuADOAz18aT+v24UqAtJdiwBJLuqhslSNB6CFXZv3OOMny9bjoJegz0hI
|
21
|
+
Fht9ppCuNmxJNd+L3zAX8lD01RUWNRC+8L5QLCjViJtjFDDCFfh9NCirs+XnTCzo
|
22
|
+
AJgFbsZIzFJtSiXUtFgscKr4Ik8ruhRbPbYbmx9rf6W74aTMPxggq/d3gj0Eh32y
|
23
|
+
WsXsQ5giVnmkbsRkBNu3QyZ8Xr5+7mvy5AWyqXKOrcW7lnYaob6Z9x/MGXGNeD6j
|
24
|
+
AgMBAAGjdTBzMAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBRY8ea6
|
25
|
+
+6kAaW7ukKph2/4MTAD8/TAcBgNVHREEFTATgRFtYWhsb25AbWFydGluaS5udTAc
|
26
|
+
BgNVHRIEFTATgRFtYWhsb25AbWFydGluaS5udTANBgkqhkiG9w0BAQUFAAOCAQEA
|
27
|
+
MxBPdbmfh3dJN51visg0QilqtyPbqxyd8YVm9wbkcmi1D2Sv9deppFvZ+pXyR+eq
|
28
|
+
qy/efw4F+3DAPw+9QNlPJG8DHQ8HrYPrf7wv5DPBpyKLD1atMGnoDb5gijIx5IMR
|
29
|
+
MxiffPYQsT7Noimqaz8KWqP1keDY9aqVKe3iDXUXKBV27sl9GhOt5jJ3rVW9ihok
|
30
|
+
KiEoBnrgQcZIEAOwfXbWT4IaIcOCgD+JloEesuHL72/3zP/vOcqZf4SOcne4+qti
|
31
|
+
DHE5pl144V24tqxZb65WTup/ov22SCXmpU8/wTeZVL3rePGRfwTJNpm+6iYszl7A
|
32
|
+
SixmX0X3SOeYg4FRkblUIA==
|
33
33
|
-----END CERTIFICATE-----
|
34
|
-
date:
|
34
|
+
date: 2017-01-16 00:00:00.000000000 Z
|
35
35
|
dependencies:
|
36
36
|
- !ruby/object:Gem::Dependency
|
37
37
|
name: configurability
|
@@ -39,14 +39,14 @@ dependencies:
|
|
39
39
|
requirements:
|
40
40
|
- - "~>"
|
41
41
|
- !ruby/object:Gem::Version
|
42
|
-
version: '
|
42
|
+
version: '3.1'
|
43
43
|
type: :runtime
|
44
44
|
prerelease: false
|
45
45
|
version_requirements: !ruby/object:Gem::Requirement
|
46
46
|
requirements:
|
47
47
|
- - "~>"
|
48
48
|
- !ruby/object:Gem::Version
|
49
|
-
version: '
|
49
|
+
version: '3.1'
|
50
50
|
- !ruby/object:Gem::Dependency
|
51
51
|
name: loggability
|
52
52
|
requirement: !ruby/object:Gem::Requirement
|
@@ -179,14 +179,14 @@ dependencies:
|
|
179
179
|
requirements:
|
180
180
|
- - "~>"
|
181
181
|
- !ruby/object:Gem::Version
|
182
|
-
version: '0.
|
182
|
+
version: '0.8'
|
183
183
|
type: :development
|
184
184
|
prerelease: false
|
185
185
|
version_requirements: !ruby/object:Gem::Requirement
|
186
186
|
requirements:
|
187
187
|
- - "~>"
|
188
188
|
- !ruby/object:Gem::Version
|
189
|
-
version: '0.
|
189
|
+
version: '0.8'
|
190
190
|
- !ruby/object:Gem::Dependency
|
191
191
|
name: hoe-highline
|
192
192
|
requirement: !ruby/object:Gem::Requirement
|
@@ -202,75 +202,75 @@ dependencies:
|
|
202
202
|
- !ruby/object:Gem::Version
|
203
203
|
version: '0.2'
|
204
204
|
- !ruby/object:Gem::Dependency
|
205
|
-
name:
|
205
|
+
name: rspec
|
206
206
|
requirement: !ruby/object:Gem::Requirement
|
207
207
|
requirements:
|
208
208
|
- - "~>"
|
209
209
|
- !ruby/object:Gem::Version
|
210
|
-
version: '
|
210
|
+
version: '3.0'
|
211
211
|
type: :development
|
212
212
|
prerelease: false
|
213
213
|
version_requirements: !ruby/object:Gem::Requirement
|
214
214
|
requirements:
|
215
215
|
- - "~>"
|
216
216
|
- !ruby/object:Gem::Version
|
217
|
-
version: '
|
217
|
+
version: '3.0'
|
218
218
|
- !ruby/object:Gem::Dependency
|
219
|
-
name:
|
219
|
+
name: simplecov
|
220
220
|
requirement: !ruby/object:Gem::Requirement
|
221
221
|
requirements:
|
222
222
|
- - "~>"
|
223
223
|
- !ruby/object:Gem::Version
|
224
|
-
version: '
|
224
|
+
version: '0.8'
|
225
225
|
type: :development
|
226
226
|
prerelease: false
|
227
227
|
version_requirements: !ruby/object:Gem::Requirement
|
228
228
|
requirements:
|
229
229
|
- - "~>"
|
230
230
|
- !ruby/object:Gem::Version
|
231
|
-
version: '
|
231
|
+
version: '0.8'
|
232
232
|
- !ruby/object:Gem::Dependency
|
233
|
-
name:
|
233
|
+
name: timecop
|
234
234
|
requirement: !ruby/object:Gem::Requirement
|
235
235
|
requirements:
|
236
236
|
- - "~>"
|
237
237
|
- !ruby/object:Gem::Version
|
238
|
-
version: '0.
|
238
|
+
version: '0.7'
|
239
239
|
type: :development
|
240
240
|
prerelease: false
|
241
241
|
version_requirements: !ruby/object:Gem::Requirement
|
242
242
|
requirements:
|
243
243
|
- - "~>"
|
244
244
|
- !ruby/object:Gem::Version
|
245
|
-
version: '0.
|
245
|
+
version: '0.7'
|
246
246
|
- !ruby/object:Gem::Dependency
|
247
|
-
name:
|
247
|
+
name: rdoc
|
248
248
|
requirement: !ruby/object:Gem::Requirement
|
249
249
|
requirements:
|
250
250
|
- - "~>"
|
251
251
|
- !ruby/object:Gem::Version
|
252
|
-
version: '0
|
252
|
+
version: '4.0'
|
253
253
|
type: :development
|
254
254
|
prerelease: false
|
255
255
|
version_requirements: !ruby/object:Gem::Requirement
|
256
256
|
requirements:
|
257
257
|
- - "~>"
|
258
258
|
- !ruby/object:Gem::Version
|
259
|
-
version: '0
|
259
|
+
version: '4.0'
|
260
260
|
- !ruby/object:Gem::Dependency
|
261
261
|
name: hoe
|
262
262
|
requirement: !ruby/object:Gem::Requirement
|
263
263
|
requirements:
|
264
264
|
- - "~>"
|
265
265
|
- !ruby/object:Gem::Version
|
266
|
-
version: '3.
|
266
|
+
version: '3.16'
|
267
267
|
type: :development
|
268
268
|
prerelease: false
|
269
269
|
version_requirements: !ruby/object:Gem::Requirement
|
270
270
|
requirements:
|
271
271
|
- - "~>"
|
272
272
|
- !ruby/object:Gem::Version
|
273
|
-
version: '3.
|
273
|
+
version: '3.16'
|
274
274
|
description: |-
|
275
275
|
Symphony is a subscription-based asynchronous job system. It
|
276
276
|
allows you to define jobs that watch for lightweight events from a
|
@@ -361,7 +361,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
361
361
|
version: 2.0.3
|
362
362
|
requirements: []
|
363
363
|
rubyforge_project:
|
364
|
-
rubygems_version: 2.
|
364
|
+
rubygems_version: 2.5.1
|
365
365
|
signing_key:
|
366
366
|
specification_version: 4
|
367
367
|
summary: Symphony is a subscription-based asynchronous job system
|
metadata.gz.sig
CHANGED
Binary file
|