schedule_job 1.0.0 → 1.0.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/README.md +5 -1
- data/bin/schedule +2 -2
- data/lib/{schedule → schedule_job}/cli.rb +1 -1
- data/lib/{schedule → schedule_job}/cron.citrus +0 -0
- data/lib/{schedule → schedule_job}/cron.rb +1 -1
- data/lib/{schedule → schedule_job}/cron.treetop +0 -0
- data/lib/{schedule → schedule_job}/cron_parser.rb +3 -3
- data/lib/schedule_job/version.rb +3 -0
- data/lib/schedule_job.rb +2 -6
- data/schedule_job.gemspec +3 -1
- metadata +7 -7
- data/Rakefile +0 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cc056eaeb082429537d01a7521bef0574cecc73a8dc8baa769a02a271758aa86
|
4
|
+
data.tar.gz: 654b25fe20451949bbecc43b3757bdba36898ed1e40a4f50d9943828e2a2951f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c5f49020d6b8965598eba15614cfdfb700ef383c58787c6b72de53f795d36c026bb6a2913905372ecf51b1e7136b3fc0be2430579d3e8ee0d17cd71a1e45b61b
|
7
|
+
data.tar.gz: 8f139bdc6d8d6edb8e6780e304e431fa8141c05089d05bbce062afab6dac42db3b94c546ab556d6a962cb9a4285e83a8c7ef7e10a65fe57972e2895263cf89f5
|
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
#
|
1
|
+
# ScheduleJob
|
2
2
|
|
3
3
|
schedule is a frontend around crontab to add/remove cron jobs from user cron tables.
|
4
4
|
|
@@ -10,6 +10,10 @@ gem install schedule_job
|
|
10
10
|
|
11
11
|
## Usage
|
12
12
|
|
13
|
+
```
|
14
|
+
|
15
|
+
```
|
16
|
+
|
13
17
|
## License
|
14
18
|
|
15
19
|
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/bin/schedule
CHANGED
File without changes
|
File without changes
|
@@ -15,13 +15,13 @@ module Citrus
|
|
15
15
|
end
|
16
16
|
end
|
17
17
|
|
18
|
-
Citrus.require("
|
18
|
+
Citrus.require("schedule_job/cron")
|
19
19
|
|
20
20
|
# require "polyglot"
|
21
21
|
# require "treetop"
|
22
|
-
# require "
|
22
|
+
# require "schedule_job/cron.treetop"
|
23
23
|
|
24
|
-
module
|
24
|
+
module ScheduleJob
|
25
25
|
module Cron
|
26
26
|
Grammar = ScheduleCronParser
|
27
27
|
|
data/lib/schedule_job.rb
CHANGED
data/schedule_job.gemspec
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: schedule_job
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Ellis
|
@@ -64,14 +64,14 @@ files:
|
|
64
64
|
- Gemfile.lock
|
65
65
|
- LICENSE.txt
|
66
66
|
- README.md
|
67
|
-
- Rakefile
|
68
67
|
- bin/schedule
|
69
|
-
- lib/schedule/cli.rb
|
70
|
-
- lib/schedule/cron.citrus
|
71
|
-
- lib/schedule/cron.rb
|
72
|
-
- lib/schedule/cron.treetop
|
73
|
-
- lib/schedule/cron_parser.rb
|
74
68
|
- lib/schedule_job.rb
|
69
|
+
- lib/schedule_job/cli.rb
|
70
|
+
- lib/schedule_job/cron.citrus
|
71
|
+
- lib/schedule_job/cron.rb
|
72
|
+
- lib/schedule_job/cron.treetop
|
73
|
+
- lib/schedule_job/cron_parser.rb
|
74
|
+
- lib/schedule_job/version.rb
|
75
75
|
- schedule_job.gemspec
|
76
76
|
homepage: https://github.com/davidkellis/scheduler
|
77
77
|
licenses:
|