jobmanager 1.1.0 → 1.1.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.
- data/History.txt +5 -0
- data/README.txt +2 -2
- data/Rakefile +1 -1
- data/examples/jobmanager.yaml +1 -1
- metadata +2 -2
data/History.txt
CHANGED
|
@@ -1,10 +1,15 @@
|
|
|
1
|
+
=== 1.1.1 / 2009-06-17
|
|
2
|
+
Corrected a line in the README.
|
|
3
|
+
|
|
1
4
|
=== 1.1.0 / 2009-06-01
|
|
2
5
|
The following changes were made:
|
|
3
6
|
* jobmanager no longer generates a job log file (nor rotates) in the case that the job output is empty.
|
|
4
7
|
* jobmanager can now be configured to email job results only when the job output is not empty ("on_job_output_or_failure").
|
|
5
8
|
* jobmanager can now be configured to not rotate the job log files
|
|
6
9
|
* jobmanager can now be configured to prepend the date/time to each line of a job log file.
|
|
10
|
+
|
|
7
11
|
=== 1.0.1 / 2008-08-27
|
|
8
12
|
Remove the dependency on the sys-host gem.
|
|
13
|
+
|
|
9
14
|
=== 1.0.0 / 2008-07-18
|
|
10
15
|
Initial release of jobmanager. This package is unit tested fully.
|
data/README.txt
CHANGED
|
@@ -119,7 +119,7 @@ Here is the example configuration file to be read by +jobmanager+.
|
|
|
119
119
|
#job_log_prepend_date_time: true
|
|
120
120
|
|
|
121
121
|
# The date/time format of the prepended date/time.
|
|
122
|
-
#
|
|
122
|
+
#job_log_prepend_date_time_format: '%F_%T'
|
|
123
123
|
|
|
124
124
|
# The sender of emails sent from jobmanager. This can also be
|
|
125
125
|
# specified in the email_settings_file (attribute default_from).
|
|
@@ -402,7 +402,7 @@ distribution.
|
|
|
402
402
|
|
|
403
403
|
This package is licensed with an MIT license:
|
|
404
404
|
|
|
405
|
-
Copyright (c) 2008 Designing Patterns
|
|
405
|
+
Copyright (c) 2008-2009 Designing Patterns
|
|
406
406
|
|
|
407
407
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
408
408
|
a copy of this software and associated documentation files (the
|
data/Rakefile
CHANGED
data/examples/jobmanager.yaml
CHANGED
|
@@ -65,7 +65,7 @@ timeout: 1800
|
|
|
65
65
|
#job_log_prepend_date_time: true
|
|
66
66
|
|
|
67
67
|
# The date/time format of the prepended date/time.
|
|
68
|
-
#
|
|
68
|
+
#job_log_prepend_date_time_format: '%F_%T'
|
|
69
69
|
|
|
70
70
|
# The sender of emails sent from jobmanager. This can also be
|
|
71
71
|
# specified in the email_settings_file (attribute default_from).
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jobmanager
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- DesigningPatterns
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-06-
|
|
12
|
+
date: 2009-06-17 00:00:00 -04:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|