rufus-scheduler 3.5.2 → 3.8.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/CHANGELOG.md +32 -0
- data/CREDITS.md +10 -0
- data/LICENSE.txt +1 -1
- data/Makefile +1 -1
- data/README.md +179 -85
- data/lib/rufus/scheduler/job_array.rb +37 -47
- data/lib/rufus/scheduler/jobs_core.rb +369 -0
- data/lib/rufus/scheduler/jobs_one_time.rb +53 -0
- data/lib/rufus/scheduler/jobs_repeat.rb +335 -0
- data/lib/rufus/scheduler/locks.rb +41 -44
- data/lib/rufus/scheduler/util.rb +166 -150
- data/lib/rufus/scheduler.rb +529 -432
- data/rufus-scheduler.gemspec +2 -3
- metadata +13 -12
- data/lib/rufus/scheduler/jobs.rb +0 -682
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fec88a5f600474172a07002ec7a17c2b35cd9aeffff3e2cfe9865e49e0c9a6d7
|
|
4
|
+
data.tar.gz: ca607aef24a501fd1a23370e230c6481fe8624c6111c79b11f7f59fc5edc5884
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0e2535642cb251105341e3d70998500f86370d41b13a6841698e15bc729d5d94ec420cfa4dc4549794ff53b82e442ae61962a61f10751a10c303f21a991d4cfc
|
|
7
|
+
data.tar.gz: bdfe0713a8b5bbec83403dbc1232f5bd310579707fd7b838a224367bc4cdd34752defc47f9cc1bb0686267c3a4b49114490866d6b8dcde22ce6ec3c52479ea90
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,38 @@
|
|
|
2
2
|
# CHANGELOG.md
|
|
3
3
|
|
|
4
4
|
|
|
5
|
+
### rufus-scheduler 3.8.1 - released 2022-01-11
|
|
6
|
+
|
|
7
|
+
* Suppress warning about @resume_discard_past
|
|
8
|
+
* Suppress warning about unused variable, solackerman gh-332
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### rufus-scheduler 3.8.0 - released 2021-07-14
|
|
12
|
+
|
|
13
|
+
* Add #source_location to Job, gh-322
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### rufus-scheduler 3.7.0 - released 2020-12-31
|
|
17
|
+
|
|
18
|
+
* Implement Job name:/n: #name and #name=, gh-309
|
|
19
|
+
* Add Job #has_key?, #value, and #entries
|
|
20
|
+
* Add #locals access to Job
|
|
21
|
+
* Implement Scheduler#around_trigger, @jjb, gh-310
|
|
22
|
+
* Accept max_worker_threads: for max_work_threads:
|
|
23
|
+
* Clean up Scheduler#shutdwon, thanks @itsaphel and @jjb, gh-304, gh-315
|
|
24
|
+
|
|
25
|
+
* f59df40 Bring in discard_past: for every jobs, gh-290
|
|
26
|
+
* 7613277 Introduce :discard_past = false for cron, gh-305
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
### rufus-scheduler 3.6.0 - released 2019-04-22
|
|
30
|
+
|
|
31
|
+
* Let Scheduler#cron fail if the cron string is invalid, gh-289
|
|
32
|
+
* Implement Job#next_times(count) for cron, every, and interval jobs
|
|
33
|
+
* Implement Job#next_times(count) for at and in jobs
|
|
34
|
+
* Stop fooling around and stick to https://semver.org
|
|
35
|
+
|
|
36
|
+
|
|
5
37
|
### rufus-scheduler 3.5.2 - released 2018-08-01
|
|
6
38
|
|
|
7
39
|
* Use Fugit::Cron#rough_frequency
|
data/CREDITS.md
CHANGED
|
@@ -4,6 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
## Contributors
|
|
6
6
|
|
|
7
|
+
* Sol Ackerman https://github.com/solarckerman gh-332
|
|
8
|
+
* John Bachir https://github.com/jjb gh-310 gh-327
|
|
9
|
+
* Daniel Berger https://github.com/djberg96 gh-300
|
|
10
|
+
* Ceyhun Onur https://github.com/ceyonur parse_cron no_error: true
|
|
11
|
+
* Darwin Wu https://github.com/dwaxe Rails initializer vs tests change
|
|
12
|
+
* Mike Karolow https://github.com/mike-yesware update Travis target Rubies
|
|
13
|
+
* Jack-Nie https://github.com/jack-nie gh-285 fix broken comment link
|
|
14
|
+
* Yechiel Kalmenson (https://github.com/achasveachas) README link fix
|
|
7
15
|
* Alex Coomans (https://github.com/drcapulet) gh-276 freq check pref improvement
|
|
8
16
|
* Vais Salikhov (https://github.com/vais) many document clarifications
|
|
9
17
|
* Wes McNamee (https://github.com/ghostsquad) let #schedule accept a CronLine
|
|
@@ -60,6 +68,8 @@
|
|
|
60
68
|
|
|
61
69
|
## Feedback
|
|
62
70
|
|
|
71
|
+
* aphel (https://github.com/itsaphel) #shutdown vs current thread, gh-304
|
|
72
|
+
* aesyondu (https://github.com/aesyondu) Rails console 4.2.x, gh-186
|
|
63
73
|
* Sasha Hoellger (https://github.com/mitnal) parse_cron and readme, gh-270
|
|
64
74
|
* Gian (https://github.com/snmgian) cron vs :first clarification, gh-266
|
|
65
75
|
* Vito Laurenza (https://github.com/veetow) help debugging tz issues, gh-240
|
data/LICENSE.txt
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
Copyright (c) 2005-
|
|
2
|
+
Copyright (c) 2005-2022, John Mettraux, jmettraux@gmail.com
|
|
3
3
|
|
|
4
4
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
5
5
|
of this software and associated documentation files (the "Software"), to deal
|
data/Makefile
CHANGED