symphony 0.9.1 → 0.9.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d761d88a38dbc8980673034e671bd89b9956f3e6
4
- data.tar.gz: 856dd02150122e9b7e4deedaf14d5a7cdb9471f2
3
+ metadata.gz: 53cc6c7bef0985416836fbf99f95500ed4d40de4
4
+ data.tar.gz: b8974d95f36961b34c4e50a82bfdef93681fa2d6
5
5
  SHA512:
6
- metadata.gz: 375ac4565f916ea5d2ae12aace517718c81d7525a0a2ed5299bc927b7f3e4988dca3845153af5d8ad054457316a4921084c43f65f4287cb6569cc122252c647c
7
- data.tar.gz: 6a0b74ed46933f93a6de5e8df9d15a9abcd7c4957c49f7b74b81cc786902b739351f56110cb9cc3230a1f51ab12321c42368f6af8144ab9c30f5a58154b43058
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
- [44341600897a] [tip]
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] [github/master]
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
@@ -346,7 +346,8 @@ class Symphony::Task
346
346
  end
347
347
 
348
348
  self.last_worked = Time.now
349
- end
349
+ rval
350
+ end
350
351
 
351
352
  return rval
352
353
  end
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.1'
15
+ VERSION = '0.9.2'
16
16
 
17
17
  # Version-control revision constant
18
- REVISION = %q$Revision: a3458bb40133 $
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.1
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-06-09 00:00:00.000000000 Z
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