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