day_planner 0.1.0.pre5 → 0.1.0.pre5.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fe2d2826f9acf0bdcb1f79f1915ac015e7de2bfd
4
- data.tar.gz: 9e9935627be8a1d9098c736543e6550de4b64c41
3
+ metadata.gz: 84ea53ef9ee61558d913d63d5b8e2fc7aad47946
4
+ data.tar.gz: bb3f02b7d0751832d57c33ac6b472bd29e566d21
5
5
  SHA512:
6
- metadata.gz: 3a242ac84495cdc9f8c0929cb06ce8adcdaab4147e546ead809c5f2dc430dad1ff8cd806457a8712d3d57c14e3edf8f53e25bb24f1bb653b9977bad5b4508b00
7
- data.tar.gz: a2acdef4ed6a6e68ab4c2839dacebf07edac9be539afac22bafc4713ec18d0e4c97ddaca5723458b101c5bceb14677f4b3811458671dcf50c8cb9b7c64aeace0
6
+ metadata.gz: 8f60b4ccb2e55e27a23a0735101737f7c52d24bacfd606159948f009e06d55fb648fab19c6accfe76d3d402ea19c464cc4136d9afd6edf3db4e4509e4db29adb
7
+ data.tar.gz: 76137ccb8aeeb5c7b44f61ac3ff8f19b390d55f4bcea16908246f0766b03acc428ecfd381cab95927b458050b6bd6304986ec23157335c87e8d998bb54232f09
data/README.md CHANGED
@@ -71,7 +71,7 @@ Since tasks are not run in separate threads (this seemed to be giving me databas
71
71
 
72
72
  Note that if you try to schedule a task with an interval shorter than DayPlanner's interval, it'll complain and fail. If you shorten DayPlanner's interval to less than that of one of its tasks, it'll complain but not fail. The task obviously will only run at scheduler thread's intervals. Use your best judgment.
73
73
 
74
- Specify your preferred interval (and whatever other settings which may be implemented one day) in config/day_planner_tasks.rb. As long as you set your interval before DayPlanner is activated, you won't have to wait for it to cycle through an interval to change the setting. If you alter this value while DayPlanner is already running, it won't take effect until the current interval ends.
74
+ Specify your preferred interval (and whatever other settings which may be implemented one day) in config/scheduled_tasks.rb. As long as you set your interval before DayPlanner is activated, you won't have to wait for it to cycle through an interval to change the setting. If you alter this value while DayPlanner is already running, it won't take effect until the current interval ends.
75
75
 
76
76
  ## Contributing
77
77
 
@@ -3,7 +3,7 @@ module DayPlanner
3
3
  MINOR = 1
4
4
  TINY = 0
5
5
  PRE = "pre5"
6
- BUILD = nil
6
+ BUILD = 1
7
7
 
8
8
  VERSION = [MAJOR, MINOR, TINY, PRE, BUILD].compact.join(".")
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: day_planner
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.pre5
4
+ version: 0.1.0.pre5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Damon Siefert