rufus-scheduler 3.4.2 → 3.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGELOG.md +393 -0
- data/CREDITS.md +137 -0
- data/LICENSE.txt +1 -1
- data/Makefile +5 -1
- data/README.md +175 -96
- data/lib/rufus/scheduler.rb +528 -440
- data/lib/rufus/scheduler/job_array.rb +37 -47
- data/lib/rufus/scheduler/jobs_core.rb +363 -0
- data/lib/rufus/scheduler/jobs_one_time.rb +53 -0
- data/lib/rufus/scheduler/jobs_repeat.rb +333 -0
- data/lib/rufus/scheduler/locks.rb +41 -44
- data/lib/rufus/scheduler/util.rb +75 -124
- data/rufus-scheduler.gemspec +17 -6
- metadata +39 -36
- data/CHANGELOG.txt +0 -353
- data/CREDITS.txt +0 -124
- data/TODO.txt +0 -151
- data/fail.txt +0 -2
- data/fail18.txt +0 -12
- data/lib/rufus/scheduler/cronline.rb +0 -498
- data/lib/rufus/scheduler/jobs.rb +0 -650
- data/log.txt +0 -285
- data/n.txt +0 -38
- data/pics.txt +0 -15
- data/sofia.md +0 -89
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: c0572c41e8ad285c2de6828cc86ef489122cea65c412514566c08c35713a0523
|
4
|
+
data.tar.gz: 327a0c5e462acc3df68d6c55366a956c9e16b4b4adf208b103568cce4f943dd6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e3153aa15933ee24cf3a11657fb0b8bd3d58d87e054b20d9d759b52cdd924a418fcf95ef1e14b980b459a501ccce91b285cd85c826e0fa4207fac85f69c77667
|
7
|
+
data.tar.gz: e7af296c9864ffc392ef44eec1bb6ed0331065658b9d9d1225cd2c1f62d1d67302db7075540b0c39a99dcf5f741471f3c38666cb8870165cca23a34f52f1c7df
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,393 @@
|
|
1
|
+
|
2
|
+
# CHANGELOG.md
|
3
|
+
|
4
|
+
|
5
|
+
### rufus-scheduler 3.7.0 - released 2020-12-31
|
6
|
+
|
7
|
+
* Implement Job name:/n: #name and #name=, gh-309
|
8
|
+
* Add Job #has_key?, #value, and #entries
|
9
|
+
* Add #locals access to Job
|
10
|
+
* Implement Scheduler#around_trigger, @jjb, gh-310
|
11
|
+
* Accept max_worker_threads: for max_work_threads:
|
12
|
+
* Clean up Scheduler#shutdwon, thanks @itsaphel and @jjb, gh-304, gh-315
|
13
|
+
|
14
|
+
* f59df40 Bring in discard_past: for every jobs, gh-290
|
15
|
+
* 7613277 Introduce :discard_past = false for cron, gh-305
|
16
|
+
|
17
|
+
|
18
|
+
### rufus-scheduler 3.6.0 - released 2019-04-22
|
19
|
+
|
20
|
+
* Let Scheduler#cron fail if the cron string is invalid, gh-289
|
21
|
+
* Implement Job#next_times(count) for cron, every, and interval jobs
|
22
|
+
* Implement Job#next_times(count) for at and in jobs
|
23
|
+
* Stop fooling around and stick to https://semver.org
|
24
|
+
|
25
|
+
|
26
|
+
### rufus-scheduler 3.5.2 - released 2018-08-01
|
27
|
+
|
28
|
+
* Use Fugit::Cron#rough_frequency
|
29
|
+
* Improve Job#check_frequency performance, gh-276, @drcapulet
|
30
|
+
|
31
|
+
|
32
|
+
### rufus-scheduler 3.5.1 - released 2018-07-20
|
33
|
+
|
34
|
+
* Upgrade fugit to 1.1.4 (with out of DST issue fix)
|
35
|
+
* Ensure JRuby doesn't count fresh, new, work threads as vacant
|
36
|
+
|
37
|
+
|
38
|
+
### rufus-scheduler 3.5.0 - released 2018-05-15
|
39
|
+
|
40
|
+
* Use fugit to parse durations
|
41
|
+
* Drop .parse_time_string and .parse_duration_string
|
42
|
+
* Use fugit to parse cronlines
|
43
|
+
|
44
|
+
|
45
|
+
### rufus-scheduler 3.4.2 - released 2017-05-24
|
46
|
+
|
47
|
+
(had yanked 3.4.1, going 3.4.2)
|
48
|
+
|
49
|
+
|
50
|
+
### rufus-scheduler 3.4.1 - released 2017-05-24
|
51
|
+
|
52
|
+
* Let #schedule accept a CronLine instance, gh-247
|
53
|
+
|
54
|
+
|
55
|
+
### rufus-scheduler 3.4.0 - released 2017-03-23
|
56
|
+
|
57
|
+
* Stop supporting Ruby < 1.9
|
58
|
+
* Drop ZoTime for et-orbi Etorbi::EoTime, gh-240
|
59
|
+
* Fix for ZooKeeper example, thanks to @djrodgerspryor, gh-238
|
60
|
+
|
61
|
+
|
62
|
+
### rufus-scheduler 3.3.4 - released 2017-02-16
|
63
|
+
|
64
|
+
* More detailed "cannot determine timezone from nil" message, gh-237
|
65
|
+
|
66
|
+
|
67
|
+
### rufus-scheduler 3.3.3 - released 2017-01-29
|
68
|
+
|
69
|
+
* use Rails' timezone by default if Rails is present, gh-230, gh-233,
|
70
|
+
thanks Alexander Deeb
|
71
|
+
* is_a?(Fixnum) replaced by is_a?(Integer), gh-232, thanks Cody Cutrer
|
72
|
+
* Fix for every double trigger, gh-231, thanks Sofia Bravo
|
73
|
+
|
74
|
+
|
75
|
+
### rufus-scheduler 3.3.2 - released 2017-01-05
|
76
|
+
|
77
|
+
* Fix ZoTime issue with `Time.zone.now #=> 'CST'`, thanks zzjin
|
78
|
+
* Fix cron weekdays + monthdays, by Dominik Sander, https://github.com/dsander
|
79
|
+
* Speedup CronLine#brute_frequency, by Dominik Sander
|
80
|
+
* Use object_id instead of hash to make Job id
|
81
|
+
|
82
|
+
|
83
|
+
### rufus-scheduler 3.3.1 - released 2016-12-03
|
84
|
+
|
85
|
+
* gh-222 fall back on `ENV['TZ']` when Time.now.zone is something
|
86
|
+
like "中国标准时间" (ask for "Asia/Shanghai"), thanks to
|
87
|
+
https://github.com/lovingyu
|
88
|
+
|
89
|
+
|
90
|
+
### rufus-scheduler 3.3.0 - released 2016-11-28
|
91
|
+
|
92
|
+
* Bring in Piavka's Job#trigger_off_schedule, gh-214
|
93
|
+
* Reject "day 0" in cronlines, thanks to Ramon Tayag, https://github.com/ramontayag
|
94
|
+
* Move away from `ENV['TZ']`, thanks to Akinori Musha, https://github.com/knu
|
95
|
+
* Fix .parse_to_time vs Date issue, as reported by @nsatragno
|
96
|
+
|
97
|
+
|
98
|
+
### rufus-scheduler 3.2.2 - released 2016-08-14
|
99
|
+
|
100
|
+
* job opt hash preservation, as suggested in gh-212, by https://github.com/d-m-u
|
101
|
+
* introduce Job#previous_time
|
102
|
+
* countered ActiveRecord 3.2.22 on gh-210, by https://github.com/paulodelgado
|
103
|
+
|
104
|
+
|
105
|
+
### rufus-scheduler 3.2.1 - released 2016-05-04
|
106
|
+
|
107
|
+
* accept `'* * * * 5L'` (last friday) (equivalent to `'* * * * 5#-1'`)
|
108
|
+
* CronLine#to_a (#to_array aliasing to it)
|
109
|
+
* simplify .parse_duration (and trim input)
|
110
|
+
* raise on `"*/0 * * * *"`, by https://github.com/simook
|
111
|
+
* introduce "days to end of month" in cron strings
|
112
|
+
|
113
|
+
|
114
|
+
### rufus-scheduler 3.2.0 - released 2015-12-28
|
115
|
+
|
116
|
+
* cache CronLine#brute_frequency results, gh-188 and gh-89
|
117
|
+
* "every" shift prevention by https://github.com/Korrigan
|
118
|
+
* Ruby warnings silenced by https://github.com/vivitar
|
119
|
+
|
120
|
+
|
121
|
+
### rufus-scheduler 3.1.10 - released 2015-11-18
|
122
|
+
|
123
|
+
* allow for `:first_in => 0`, gh-179 by https://github.com/JonMcPherson
|
124
|
+
for https://github.com/Shopify/dashing/commit/ea3730fa4
|
125
|
+
* stop shipping specs in gem
|
126
|
+
|
127
|
+
|
128
|
+
### rufus-scheduler 3.1.9 - released 2015-11-12
|
129
|
+
|
130
|
+
* fix potential RuntimeError in CronLine#prev_second,
|
131
|
+
by Alexandru https://github.com/alexandru-calinoiu
|
132
|
+
|
133
|
+
|
134
|
+
### rufus-scheduler 3.1.8 - released 2015-11-10
|
135
|
+
|
136
|
+
* stop jumping eagerly out of DST, fix for one hour jump when leaving DST
|
137
|
+
thanks Alyssa http://github.com/alyssa
|
138
|
+
|
139
|
+
|
140
|
+
### rufus-scheduler 3.1.7 - released 2015-10-15
|
141
|
+
|
142
|
+
* ack #unscheduled_at in #scheduled?, by Claude https://github.com/claudeatsafe
|
143
|
+
|
144
|
+
|
145
|
+
### rufus-scheduler 3.1.6 - released 2015-10-01
|
146
|
+
|
147
|
+
* fix job id uniqueness (JRuby), thanks 김성식 https://github.com/kssminus
|
148
|
+
|
149
|
+
|
150
|
+
### rufus-scheduler 3.1.5 - released 2015-09-25
|
151
|
+
|
152
|
+
* fix for "not a valid cronline" on "mingw" Ruby distributions, gh-166
|
153
|
+
|
154
|
+
|
155
|
+
### rufus-scheduler 3.1.4 - released 2015/08/29
|
156
|
+
|
157
|
+
* fix cron issue reported by Jesse https://github.com/jhw-at-prosperworks-com
|
158
|
+
|
159
|
+
|
160
|
+
### rufus-scheduler 3.1.3 - released 2015/06/20
|
161
|
+
|
162
|
+
* prevent `Thread[:rufus_scheduler_time]` being nil, gh-156
|
163
|
+
* fix inconsistency in Job#start_work_thread
|
164
|
+
|
165
|
+
|
166
|
+
### rufus-scheduler 3.1.2 - released 2015/05/23
|
167
|
+
|
168
|
+
* avoid cron/:first_at infinite loop, thanks https://github.com/pouellet
|
169
|
+
|
170
|
+
|
171
|
+
### rufus-scheduler 3.1.1 - released 2015/04/19
|
172
|
+
|
173
|
+
* fix ZoTime.is_timezone? on OSX, thanks https://github.com/yaauie
|
174
|
+
|
175
|
+
|
176
|
+
### rufus-scheduler 3.1.0 - released 2015/04/18
|
177
|
+
|
178
|
+
* go without tzinfo (and its dependencies)
|
179
|
+
* include @ketan's #next_time improvements
|
180
|
+
* remove 2.x warning message on install
|
181
|
+
|
182
|
+
|
183
|
+
### rufus-scheduler 3.0.9 - released 2014/08/30
|
184
|
+
|
185
|
+
* fix TZ with underscores, thanks https://github.com/gnilrets
|
186
|
+
* integrate https://github.com/ecin Lock mecha
|
187
|
+
|
188
|
+
|
189
|
+
### rufus-scheduler 3.0.8 - released 2014/06/09
|
190
|
+
|
191
|
+
* handle TZInfo errors on DST transitions, thanks https://github.com/junhanamaki
|
192
|
+
* implement Scheduler#up?
|
193
|
+
* let schedule and schedule_at use Chronic if present
|
194
|
+
* let Rufus::Scheduler.parse use Chronic if present
|
195
|
+
|
196
|
+
|
197
|
+
### rufus-scheduler 3.0.7 - released 2014/03/18
|
198
|
+
|
199
|
+
* implement Scheduler #occurrences and #timeline, inspired by kreynolds
|
200
|
+
* implement Job #last_work_time and #mean_work_time
|
201
|
+
* implement Job#count
|
202
|
+
* add more info to the stderr error output (scheduler/tz info)
|
203
|
+
* prevent skipping a day on switch to summertime, gh-114, thanks Matteo
|
204
|
+
|
205
|
+
|
206
|
+
### rufus-scheduler 3.0.6 - released 2014/02/14
|
207
|
+
|
208
|
+
* avoid "can't be called from trap context" on Ruby 2.0, gh-98
|
209
|
+
|
210
|
+
|
211
|
+
### rufus-scheduler 3.0.5 - released 2014/01/30
|
212
|
+
|
213
|
+
* implement Job#call(do_rescue=false), gh-97
|
214
|
+
* implement `:first => :now` for repeat jobs, gh-96
|
215
|
+
|
216
|
+
|
217
|
+
### rufus-scheduler 3.0.4 - released 2014/01/19
|
218
|
+
|
219
|
+
* make CronLine#frequency faster (to avoid 20s schedule_cron times)
|
220
|
+
|
221
|
+
|
222
|
+
### rufus-scheduler 3.0.3 - released 2013/12/12
|
223
|
+
|
224
|
+
* CronLine#previous_time fix by Yassen Bantchev (https://github.com/yassenb)
|
225
|
+
* introduce ZookeptScheduler example in the readme
|
226
|
+
* rename #consider_lockfile to #lock and introduce #unlock
|
227
|
+
|
228
|
+
|
229
|
+
### rufus-scheduler 3.0.2 - released 2013/10/22
|
230
|
+
|
231
|
+
* default :max_work_threads to 28
|
232
|
+
* fix "rufus rushes to create work threads" issue, thanks Gatis Tomsons
|
233
|
+
* introduce Rufus::Scheduler::NotRunningError, thanks Gatis Tomsons
|
234
|
+
|
235
|
+
|
236
|
+
### rufus-scheduler 3.0.1 - released 2013/10/19
|
237
|
+
|
238
|
+
* fix post_install_message, thanks Ted Pennings
|
239
|
+
* bring back .parse_time_string and .parse_duration_string
|
240
|
+
|
241
|
+
|
242
|
+
### rufus-scheduler 3.0.0 - released 2013/10/02
|
243
|
+
|
244
|
+
* complete rewrite.
|
245
|
+
* introduce scheduler.interval('10s') { ... }
|
246
|
+
|
247
|
+
|
248
|
+
### rufus-scheduler 2.0.24 - released 2013/09/02
|
249
|
+
|
250
|
+
* lowered tzinfo dependency to >= 0.3.22
|
251
|
+
http://stackoverflow.com/questions/18551970
|
252
|
+
|
253
|
+
|
254
|
+
### rufus-scheduler 2.0.23 - released 2013/07/26
|
255
|
+
|
256
|
+
* mutex vs timeout fix by Tobias Kraze
|
257
|
+
|
258
|
+
|
259
|
+
### rufus-scheduler 2.0.22 - released 2013/07/16
|
260
|
+
|
261
|
+
* parse `"/10 * * * *"` again (like <= 2.0.19 did), thanks @skrd
|
262
|
+
|
263
|
+
|
264
|
+
### rufus-scheduler 2.0.21 - released 2013/07/15
|
265
|
+
|
266
|
+
* add license (MIT) to gemspec file
|
267
|
+
|
268
|
+
|
269
|
+
### rufus-scheduler 2.0.20 - released 2013/07/15
|
270
|
+
|
271
|
+
* add Rufus::Scheduler.new (so that rs 3.0 quickstarts are OK with 2.0.20)
|
272
|
+
* implement CronLine#previous_time(now=Time.now) (Idea Matteo Cerutti)
|
273
|
+
* throw ArgumentError for invalid cron lines (Thanks Aimee Rose)
|
274
|
+
* cron 0 vs 24 hour case straightening (Thanks Aimee Rose)
|
275
|
+
* support for sun#L or sun#-2 in cron lines
|
276
|
+
|
277
|
+
|
278
|
+
### rufus-scheduler 2.0.19 - released 2013/05/07
|
279
|
+
|
280
|
+
* raise ArgumentError on <= 0.0 "every" frequency (Thanks Lucy Fu)
|
281
|
+
* support multiple mutexes (Thanks Rainux Luo)
|
282
|
+
|
283
|
+
|
284
|
+
### rufus-scheduler 2.0.18 - released 2013/03/06
|
285
|
+
|
286
|
+
* support for "L" in cron lines (Thanks Andrew Davey)
|
287
|
+
* support for negative time strings (Thanks Danny "northox" Fullerton)
|
288
|
+
* reject invalid weekdays (Thanks pazustep)
|
289
|
+
|
290
|
+
|
291
|
+
### rufus-scheduler 2.0.17 - released 2012/06/14
|
292
|
+
|
293
|
+
* @andrehjr patch to make it work on Ruby 1.9.3
|
294
|
+
* raises ArgumentError on unknown/unsupported options (Idea Tero Tilus)
|
295
|
+
|
296
|
+
|
297
|
+
### rufus-scheduler 2.0.16 - released 2011/12/31
|
298
|
+
|
299
|
+
* hardened Rufus.parse_time_string
|
300
|
+
* running job thread: getting rid of the job pointer once job is done
|
301
|
+
|
302
|
+
|
303
|
+
### rufus-scheduler 2.0.15 - released 2011/12/20
|
304
|
+
|
305
|
+
* Scheduler#running_jobs (Thanks Louis Coilliot)
|
306
|
+
|
307
|
+
|
308
|
+
### rufus-scheduler 2.0.14 - released 2011/12/11
|
309
|
+
|
310
|
+
* Job #pause and #resume
|
311
|
+
* Scheduler #pause(job_or_job_id) and #resume(job_or_job_id)
|
312
|
+
* Scheduler#unschedule(job_or_job_id)
|
313
|
+
|
314
|
+
|
315
|
+
### rufus-scheduler 2.0.13 - released 2011/11/14
|
316
|
+
|
317
|
+
* cron lines now OK with "09". Thanks Anthony Lewis
|
318
|
+
|
319
|
+
|
320
|
+
### rufus-scheduler 2.0.12 - released 2011/10/28
|
321
|
+
|
322
|
+
* hardened exception handling. Thanks Sam Gibson
|
323
|
+
* accepting #handle_exception, #log_exception or #on_exception
|
324
|
+
* `scheduler.in '1s', :mutex => 'that_mutex_name'`
|
325
|
+
|
326
|
+
|
327
|
+
### rufus-scheduler 2.0.11 - released 2011/09/30
|
328
|
+
|
329
|
+
* require 'rufus-scheduler' works
|
330
|
+
|
331
|
+
|
332
|
+
### rufus-scheduler 2.0.10 - released 2011/06/26
|
333
|
+
|
334
|
+
* every and allow_overlapping now surviving exceptions. Thanks sha1dy
|
335
|
+
|
336
|
+
|
337
|
+
### rufus-scheduler 2.0.9 - released 2011/04/22
|
338
|
+
|
339
|
+
* `Scheduler#first_at` and `:discard_past => true`. Thanks concept47
|
340
|
+
* `Scheduler#cron` and monthdays (sun#2 or mon#1)
|
341
|
+
* `Scheduler#unschedule_by_tag(t)`
|
342
|
+
|
343
|
+
|
344
|
+
### rufus-scheduler 2.0.8 - released 2010/12/31
|
345
|
+
|
346
|
+
* issue with cron `"0 7-23/2 * * *"` fixed. Thanks Pickerel
|
347
|
+
|
348
|
+
|
349
|
+
### rufus-scheduler 2.0.7 - released 2010/11/09
|
350
|
+
|
351
|
+
* `:allow_overlapping => false`, thanks Adam Davies
|
352
|
+
* cron and timezones, thanks Tanzeeb Khalili
|
353
|
+
* `Scheduler#trigger_threads`, thanks Tim Uckun
|
354
|
+
|
355
|
+
|
356
|
+
### rufus-scheduler 2.0.6 - released 2010/05/01
|
357
|
+
|
358
|
+
* timeout jobs not outliving their parent job anymore, thanks Joel Wood
|
359
|
+
|
360
|
+
|
361
|
+
### rufus-scheduler 2.0.5 - released 2010/03/02
|
362
|
+
|
363
|
+
* fixed parse_time_string(s) issue, thanks Gonzalo Suarez
|
364
|
+
|
365
|
+
|
366
|
+
### rufus-scheduler 2.0.4 - released 2010/02/12
|
367
|
+
|
368
|
+
* addressing issue with every and timeout, thanks Tony Day
|
369
|
+
|
370
|
+
|
371
|
+
### rufus-scheduler 2.0.3 - released 2009/11/04
|
372
|
+
|
373
|
+
* made sure Schedulables with a call(job) method were OK when passed as second
|
374
|
+
parameter (thanks Nate Wiger)
|
375
|
+
|
376
|
+
|
377
|
+
### rufus-scheduler 2.0.2 - released 2009/10/31
|
378
|
+
|
379
|
+
* unified JobQueue and CronJobQueue, and handed @last_second management to the
|
380
|
+
latter
|
381
|
+
* #trigger_block method for easier override
|
382
|
+
* passing `:job => job` among Schedulable trigger parameters
|
383
|
+
|
384
|
+
|
385
|
+
### rufus-scheduler 2.0.1 - released 2009/05/07
|
386
|
+
### rufus-scheduler 2.0.0 - released 2009/05/07
|
387
|
+
|
388
|
+
...
|
389
|
+
|
390
|
+
## initial release
|
391
|
+
|
392
|
+
(was [openwferu-scheduler](https://rubygems.org/gems/openwferu-scheduler/versions) before that)
|
393
|
+
|
data/CREDITS.md
ADDED
@@ -0,0 +1,137 @@
|
|
1
|
+
|
2
|
+
# CREDITS.md
|
3
|
+
|
4
|
+
|
5
|
+
## Contributors
|
6
|
+
|
7
|
+
* John Bachir https://github.com/jjb gh-310
|
8
|
+
* Daniel Berger https://github.com/djberg96 gh-300
|
9
|
+
* Ceyhun Onur https://github.com/ceyonur parse_cron no_error: true
|
10
|
+
* Darwin Wu https://github.com/dwaxe Rails initializer vs tests change
|
11
|
+
* Mike Karolow https://github.com/mike-yesware update Travis target Rubies
|
12
|
+
* Jack-Nie https://github.com/jack-nie gh-285 fix broken comment link
|
13
|
+
* Yechiel Kalmenson (https://github.com/achasveachas) README link fix
|
14
|
+
* Alex Coomans (https://github.com/drcapulet) gh-276 freq check pref improvement
|
15
|
+
* Vais Salikhov (https://github.com/vais) many document clarifications
|
16
|
+
* Wes McNamee (https://github.com/ghostsquad) let #schedule accept a CronLine
|
17
|
+
* Joe Rafaniello (https://github.com/jrafanie) Travis Ruby 2.4.1
|
18
|
+
* Benjamin Fleischer (https://github.com/bf4) ZoTime#subtract
|
19
|
+
* Sam Rowe (https://github.com/riddley) gh-240 timezone for Debian
|
20
|
+
* Daniel Rodgers-Pryor (https://github.com/djrodgerspryor), gh-238 fix ZooKeeper example
|
21
|
+
* Cody Cutrer (https://github.com/ccutrer) gh-232 is_a?(Fixnum) replacement
|
22
|
+
* Dominik Sander (https://github.com/dsander), gh-225, gh-226
|
23
|
+
* Piavka (https://github.com/piavka) Job#trigger_off_schedule, gh-214
|
24
|
+
* Paulo Delgado (https://github.com/paulodelgado) counter ActiveRecord, gh-210
|
25
|
+
* Anjali Sharma (https://github.com/anjali-sharma) enhance job#last_time example
|
26
|
+
* Kyle Simukka (https://github.com/simook) raise on `"*/0 * * * *"`
|
27
|
+
* Ryan McGeary (https://github.com/rmm5t) svg badges for the readme
|
28
|
+
* Balasankar C (https://github.com/balasankarc) fix CronJob spec vs December
|
29
|
+
* Matthieu Rosinski (https://github.com/Korrigan) prevent "every" shifts
|
30
|
+
* vivitar (https://github.com/vivitar) silenced a set of Ruby warnings
|
31
|
+
* Jon McPherson (https://github.com/JonMcPherson) `:first_in => 0` back
|
32
|
+
* Calinoiu Alexandru Nicolae (https://github.com/alexandru-calinoiu) CronLine#prev_second fix
|
33
|
+
* Alyssa Pohahau (https://github.com/alyssa) out of DST transition specs
|
34
|
+
* Claude Vessaz (https://github.com/claudeatsafe) ack #unscheduled_at in #scheduled?
|
35
|
+
* 김성식 (https://github.com/kssminus) job id uniqueness effort
|
36
|
+
* Jesse Willet (https://github.com/jhw-at-prosperworks-com) cron vs `"*/10"`
|
37
|
+
* Pascal Ouellet (https://github.com/pouellet) Scheduler#timeline loop fix
|
38
|
+
* Ryan Biesemeyer (https://github.com/yaauie) ZoTime.is_timezone? on OSX
|
39
|
+
* Ketan Padegaonkar (https://github.com/ketan) .brute_frequency improvement
|
40
|
+
* Gabriel Gilder (https://github.com/ggilder) LA DST specs
|
41
|
+
* Sterling Paramore (https://github.com/gnilrets) underscore TZ fix
|
42
|
+
* ecin (https://github.com/ecin) new lock mecha
|
43
|
+
* Adam Jonas (https://github.com/adamjonas) migrate specs to "expect"
|
44
|
+
* Yassen Bantchev (https://github.com/yassenb) CronLine#previous_time rewrite
|
45
|
+
* Eric Lindvall (https://github.com/eric) Zookeeper locked example
|
46
|
+
* Ted Pennings (https://github.com/tedpennings) typo in post_install_message
|
47
|
+
* Tobias Kraze (https://github.com/kratob) timeout vs mutex fix
|
48
|
+
* Patrick Farrell (https://github.com/pfarrell) pointing at deprecated start_new
|
49
|
+
* Thomas Sevestre (https://github.com/thomassevestre) :exception option
|
50
|
+
* Matteo Cerutti - last_time / previous_time idea (and initial implementation)
|
51
|
+
* Aimee Rose (https://github.com/AimeeRose) cronline and > 24
|
52
|
+
* Lucy Fu (https://github.com/lfu) arg error on `<= 0 "every" freq`
|
53
|
+
* Rainux Luo (https://github.com/rainux) multiple mutexes
|
54
|
+
* Andrew Davey (https://github.com/asdavey) "L" in cron lines
|
55
|
+
* Stig Kleppe-Jørgensen (https://github.com/stigkj)
|
56
|
+
* Danny "northox" Fullerton (https://github.com/northox) negative time strings
|
57
|
+
* Marcus Brito (https://github.com/pazustep) CronLine proofing
|
58
|
+
* André Luis Leal Cardoso Junior (https://github.com/andrehjr) 1.9.3 patch
|
59
|
+
* Anthony Lewis (https://github.com/anthonylewis) cron lines and 09 issue
|
60
|
+
* concept47 (https://github.com/concept47) every and :discard_past
|
61
|
+
* Chris Kampemeier (https://github.com/chrisk) rspec 2.0 refinements
|
62
|
+
* Tanzeeb Khalili (https://github.com/tanzeeb) cron and timezones
|
63
|
+
* Adam Davies (https://github.com/adz) `:allow_overlapping => false`
|
64
|
+
* Klaas Jan Wierenga (https://github.com/kjwierenga) at/every/in stress tests (1.0 and 2.0)
|
65
|
+
* TobyH (https://github.com/tobyh) faster and cleaner `CronLine#next_time`
|
66
|
+
|
67
|
+
|
68
|
+
## Feedback
|
69
|
+
|
70
|
+
* aphel (https://github.com/itsaphel) #shutdown vs current thread, gh-304
|
71
|
+
* aesyondu (https://github.com/aesyondu) Rails console 4.2.x, gh-186
|
72
|
+
* Sasha Hoellger (https://github.com/mitnal) parse_cron and readme, gh-270
|
73
|
+
* Gian (https://github.com/snmgian) cron vs :first clarification, gh-266
|
74
|
+
* Vito Laurenza (https://github.com/veetow) help debugging tz issues, gh-240
|
75
|
+
* Yoshimi Keiji (https://github.com/walf443) v.3.3.3 mislabelling
|
76
|
+
* Alexander Deeb (https://github.com/adeeb1) gh-230
|
77
|
+
* Sofia Bravo (http://stackoverflow.com/users/1123850/sofia-bravo) gh-231
|
78
|
+
* zzjin (https://github.com/zzjin) 3.3.x vs CST abbreviated timezone, gh-228
|
79
|
+
* lovingyu (https://github.com/lovingyu) fallback to `ENV['TZ']`, gh-222
|
80
|
+
* Ramon Tayag (https://github.com/ramontayag) prevent day 0 in cronlines
|
81
|
+
* Akinori Musha (https://github.com/knu) `ENV['TZ']` setting is harmful
|
82
|
+
* Nicolás Satragno (https://twitter.com/nsatragno) parse_to_time vs Date
|
83
|
+
* d-m-u duhlmann (https://github.com/d-m-u) job opt hash preservation
|
84
|
+
* Anjali Sharma (https://github.com/anjali-sharma) fix typographical error
|
85
|
+
* Jonathan Campos (https://github.com/jonbcampos) negative cron day idea
|
86
|
+
* Andrey Morskov (https://github.com/accessd) fix typographical error
|
87
|
+
* Eduardo Maia (https://github.com/emaiax) rufus and the Rails console
|
88
|
+
* Suisea (https://github.com/suisea) readme rewording
|
89
|
+
* Radek (http://stackoverflow.com/users/250422) gh-166
|
90
|
+
* Patrik Ragnarsson (https://github.com/dentarg) timeout vs nil, gh-156
|
91
|
+
* Adefila (https://twitter.com/adefilaedward1) typo in readme
|
92
|
+
* Michael Guymon (https://github.com/mguymon) #next_time vs :first_at
|
93
|
+
* junhanamaki (https://github.com/junhanamaki) #next_time and dst ambiguities
|
94
|
+
* kreynolds (tossrock) - inspiration for #occurrences
|
95
|
+
* Matteo (https://github.com/m4ce) dst and cron issue
|
96
|
+
* Tobias Bielohlawek (https://github.com/rngtng) missing assertion
|
97
|
+
* Joe Taylor and Agis Anastasopoulos (http://stackoverflow.com/questions/21280870) `:first => :now` and `Job#call`
|
98
|
+
* Gatis Tomsons (https://github.io/gacha) heavy work threads and lock errors
|
99
|
+
* Joast (https://github.com/joast) missing .to_time_string alias (code and doc)
|
100
|
+
* Tamir Duberstein (https://github.com/tamird) rdoc inaccuracies
|
101
|
+
* Kevin Bouwkamp (https://github.com/bmxpert1) first_at issues
|
102
|
+
* Daniel Beauchamp (https://github.com/pushmatrix) pre/post trigger callbacks
|
103
|
+
* Arthur Maltson (https://github.com/amaltson) readme fixes
|
104
|
+
* skrd (https://github.com/skrd) `"/10 * * * *"` cron issue
|
105
|
+
* Hongli Lai - `Scheduler#stop(:terminate => true)` request
|
106
|
+
* Tero Tilus - raises on unsupported/unknown options
|
107
|
+
* Louis Coilliot - Scheduler#running_jobs
|
108
|
+
* Henrique G. Testa - pause/resume concept
|
109
|
+
* Sam Gibson (https://github.com/samfoo) exception handling hardening
|
110
|
+
* sha1dy (https://github.com/sha1dy) every and overlapping exception issue
|
111
|
+
* Defusal - unschedule_by_tag
|
112
|
+
* pickerel (https://github.com/pickerel)
|
113
|
+
* Gonzalo Suarez - parse_time_string(s) issue
|
114
|
+
* Tony Day (https://github.com/tonyday) every and overlapping timeout issue
|
115
|
+
* Nate Wiger (Schedulable call/trigger issue)
|
116
|
+
* Aldric (readme errors)
|
117
|
+
* Kenneth Kalmer (daemon-kit)
|
118
|
+
* Chris Evans, :timeout tests on JRuby
|
119
|
+
* Tim Uckun, :timeout concept
|
120
|
+
* K Liu, for the note about CronLine#next_time
|
121
|
+
* Xianhang Zhang, find_jobs(tag=nil) patch
|
122
|
+
* Yi Wen, for lib/rufus-scheduler.rb
|
123
|
+
* Adam Green and Rael Dornfest for the Taskr breaking issue feedback
|
124
|
+
* Sean Liu, unschedule_every issue
|
125
|
+
* Manfred Usselman (no cronjobs on sundays bug)
|
126
|
+
* Michael Goth, tests with precision > 1s
|
127
|
+
|
128
|
+
* many people gave feedback previously, see
|
129
|
+
http://openwferu.rubyforge.org/svn/trunk/openwfe-ruby/CREDITS.txt (dead)
|
130
|
+
|
131
|
+
|
132
|
+
## and finally
|
133
|
+
|
134
|
+
* Many thanks to the contributors of fugit (https://github.com/floraison/fugit) and et-orbi (https://github.com/floraison/et-orbi)
|
135
|
+
* Many thanks to the author and contributors of the tzinfo gem (http://tzinfo.github.io/)
|
136
|
+
* Many thanks to the EventMachine team (especially Aman Gupta)
|
137
|
+
|