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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cc94e118313d64c54f5690f3c2a144c21f7b56c0719c36a0642982f468469750
4
- data.tar.gz: 52f2bf8923744d67938cbf0dfa764d8e6304fab512188c916505cf342203ec54
3
+ metadata.gz: fec88a5f600474172a07002ec7a17c2b35cd9aeffff3e2cfe9865e49e0c9a6d7
4
+ data.tar.gz: ca607aef24a501fd1a23370e230c6481fe8624c6111c79b11f7f59fc5edc5884
5
5
  SHA512:
6
- metadata.gz: f02d8f20e5acaeaa27a8c9e0895e8c1fc5ba534c2c228e683ac36042e32f5306cade78225dc8335e38fab8f724a6edf23b0196d5506d53c989af0e88e65cdbef
7
- data.tar.gz: 9aa6c0211441f60d3b326b6d35abde28dbe01558830288b3a4f7d2aed9523e6bf690345ca39656dafc976dec3a658b435735ea8f568cc02856861e074de2f226
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-2017, John Mettraux, jmettraux@gmail.com
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
@@ -23,5 +23,5 @@ build: gemspec_validate
23
23
  mv $(NAME)-$(VERSION).gem pkg/
24
24
 
25
25
  push: build
26
- gem push pkg/$(NAME)-$(VERSION).gem
26
+ gem push --otp "$(OTP)" pkg/$(NAME)-$(VERSION).gem
27
27