day_planner 0.0.13 → 0.0.13.1
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/README.md +1 -1
- data/lib/day_planner/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 930def21830db638cd84df9a141e72df1b291d69
|
4
|
+
data.tar.gz: dbe3655ab9337d45eff1ec2a58f5d1a45349fc8e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f281ee7c192aa5d4616ca697f1e188692fec1fb79947b3c34a15a3a34eeb23c3ae435a065dbef7e389c4e3dd55c173f383b58cf752777c1860d38d1093e83684
|
7
|
+
data.tar.gz: ebe32d136206795ab5a19a41178a3dc90de954a09946f736f5572755c019a772ee382d9cf799568ad6b546ac04785cd8e9568995a92b5f3b631d7ea6b3d2f694
|
data/README.md
CHANGED
@@ -4,7 +4,7 @@ Day Planner is a simple tool to manage in-process execution of scheduled tasks.
|
|
4
4
|
|
5
5
|
I wrote this because I needed a simple, lightweight tool to schedule small, light tasks on an application running on Heroku, without the extra cost of a dedicated clock process to handle it, but executing more frequently than Heroku's free scheduler permits.
|
6
6
|
|
7
|
-
Schedule management is in a thread of its own;
|
7
|
+
Schedule management is in a thread of its own; scheduled tasks are run in the same thread (I was spawning separate threads for them, but it seemed to be causing issues with database utilization on Heroku). Ruby 2.0's handling of threading is improved over the 1.9 branch, so I require that as a minimum, but I obviously can't guarantee that you won't encounter situations in which poorly behaved tasks block your application's main thread. If you want assurances against that, use any of the other tools (did I mention [Clockwork](http://rubygems.org/gems/clockwork)?)
|
8
8
|
|
9
9
|
## Installation
|
10
10
|
|
data/lib/day_planner/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: day_planner
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.13
|
4
|
+
version: 0.0.13.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Damon Siefert
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-12-
|
11
|
+
date: 2013-12-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|