symphony 0.9.1 → 0.9.2
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/ChangeLog +55 -3
- data/History.rdoc +8 -0
- data/lib/symphony/task.rb +2 -1
- data/lib/symphony.rb +2 -2
- data.tar.gz.sig +0 -0
- metadata +2 -2
- 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: 53cc6c7bef0985416836fbf99f95500ed4d40de4
|
4
|
+
data.tar.gz: b8974d95f36961b34c4e50a82bfdef93681fa2d6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7ee965658a4f05bc91447cd0771658e0f0e5875273c24991c558a03aee728ea134941b9ef0d49fb430cfd7aa249523b89cb3785a3187f5b075d1a7b6e0418d7f
|
7
|
+
data.tar.gz: 7cd25b5d827f48a5dab0607535e9e80b2fe9ea3d7ba75511aa8efff09e8809b658e11a8df31c95f72e6697ac1637fc7eecbaa032b5bbdf614e66ead26981eb3f
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/ChangeLog
CHANGED
@@ -1,14 +1,66 @@
|
|
1
|
+
2015-07-07 Mahlon E. Smith <mahlon@martini.nu>
|
2
|
+
|
3
|
+
* lib/symphony/task.rb:
|
4
|
+
Ensure the work callback's block returns the work() rval, instead of
|
5
|
+
the current time. This fixes Task acknowledgement.
|
6
|
+
[889ec4c329ed] [tip]
|
7
|
+
|
8
|
+
2015-06-08 Michael Granger <ged@FaerieMUD.org>
|
9
|
+
|
10
|
+
* .hgtags:
|
11
|
+
Added tag v0.9.1 for changeset 794376fe5aae
|
12
|
+
[173192ac6251]
|
13
|
+
|
14
|
+
* .hgsigs:
|
15
|
+
Added signature for changeset a3458bb40133
|
16
|
+
[794376fe5aae] [v0.9.1]
|
17
|
+
|
18
|
+
* History.rdoc, lib/symphony.rb, symphony.gemspec:
|
19
|
+
Bump the patch version, update history.
|
20
|
+
[a3458bb40133]
|
21
|
+
|
22
|
+
* lib/symphony.rb, lib/symphony/daemon.rb, spec/symphony_spec.rb,
|
23
|
+
symphony.gemspec:
|
24
|
+
Make Symphony.tasks contain just the task names.
|
25
|
+
|
26
|
+
The Daemon will now load them on startup. This is so code that can
|
27
|
+
depend on Symphony without loading every configured task anytime its
|
28
|
+
config loads.
|
29
|
+
[ade5a2647590]
|
30
|
+
|
31
|
+
2015-06-01 Michael Granger <ged@FaerieMUD.org>
|
32
|
+
|
33
|
+
* .hgtags:
|
34
|
+
Added tag v0.9.0 for changeset 197111441b6d
|
35
|
+
[b342ddae5e9c]
|
36
|
+
|
37
|
+
* .hgsigs:
|
38
|
+
Added signature for changeset 84c169f1c831
|
39
|
+
[197111441b6d] [v0.9.0]
|
40
|
+
|
41
|
+
* History.rdoc, README.rdoc, lib/symphony.rb, symphony.gemspec:
|
42
|
+
Bump minor version, update History.
|
43
|
+
[84c169f1c831]
|
44
|
+
|
45
|
+
* spec/helpers.rb:
|
46
|
+
Add #message_count to the mock queue class
|
47
|
+
[3dad232548eb] [github/master]
|
48
|
+
|
49
|
+
* lib/symphony/routing.rb, spec/symphony/routing_spec.rb:
|
50
|
+
Fix the patterns used by Symphony::Routing
|
51
|
+
[b9017563da91]
|
52
|
+
|
1
53
|
2015-05-29 Michael Granger <ged@FaerieMUD.org>
|
2
54
|
|
3
|
-
* .gems, .rvm.gems, .rvmrc:
|
55
|
+
* .gems, .hoerc, .rvm.gems, .rvmrc:
|
4
56
|
Update dev environment
|
5
|
-
[
|
57
|
+
[074b15c4dbc8]
|
6
58
|
|
7
59
|
2015-02-27 Michael Granger <ged@FaerieMUD.org>
|
8
60
|
|
9
61
|
* .travis.yml:
|
10
62
|
Don't test under rbx
|
11
|
-
[c6e5888c9d68]
|
63
|
+
[c6e5888c9d68]
|
12
64
|
|
13
65
|
* .travis.yml, Gemfile.ci:
|
14
66
|
Nope, backed out changeset 031ea486d462
|
data/History.rdoc
CHANGED
@@ -1,3 +1,11 @@
|
|
1
|
+
== v0.9.2 [2015-07-07] Mahlon E. Smith <mahlon@martini.nu>
|
2
|
+
|
3
|
+
Fixes:
|
4
|
+
|
5
|
+
- Ensure the work callback's block returns the work() rval, instead of
|
6
|
+
the current time. This fixes Task acknowledgement.
|
7
|
+
|
8
|
+
|
1
9
|
== v0.9.1 [2015-06-08] Michael Granger <ged@FaerieMUD.org>
|
2
10
|
|
3
11
|
Fixes:
|
data/lib/symphony/task.rb
CHANGED
data/lib/symphony.rb
CHANGED
@@ -12,10 +12,10 @@ module Symphony
|
|
12
12
|
Configurability
|
13
13
|
|
14
14
|
# Library version constant
|
15
|
-
VERSION = '0.9.
|
15
|
+
VERSION = '0.9.2'
|
16
16
|
|
17
17
|
# Version-control revision constant
|
18
|
-
REVISION = %q$Revision:
|
18
|
+
REVISION = %q$Revision: 4171fb773f62 $
|
19
19
|
|
20
20
|
|
21
21
|
# The name of the environment variable to check for config file overrides
|
data.tar.gz.sig
CHANGED
Binary file
|
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.9.
|
4
|
+
version: 0.9.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael Granger
|
@@ -31,7 +31,7 @@ cert_chain:
|
|
31
31
|
G8LHR7EjtPPmqCCunfyecJ6MmCNaiJCBxq2NYzyNmluPyHT8+0fuB5kccUVZm6CD
|
32
32
|
xn3DzOkDE6NYbk8gC9rTsA==
|
33
33
|
-----END CERTIFICATE-----
|
34
|
-
date: 2015-
|
34
|
+
date: 2015-07-07 00:00:00.000000000 Z
|
35
35
|
dependencies:
|
36
36
|
- !ruby/object:Gem::Dependency
|
37
37
|
name: configurability
|
metadata.gz.sig
CHANGED
Binary file
|