jobmanager 1.1.2 → 1.1.3

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.
@@ -1,3 +1,8 @@
1
+ === 1.1.3 / 2010-01-15
2
+ A couple minor changes were made.
3
+ * Changes to gem specification.
4
+ * Version can be accessed programmitcally from gem.
5
+
1
6
  === 1.1.2 / 2009-06-19
2
7
  Fixed a bug:
3
8
  * Removed duplicate short command line option (-p for command path and job_log_prepend_date_time).
data/README.txt CHANGED
@@ -1,4 +1,9 @@
1
- Object
1
+
2
+
3
+
4
+
5
+ = jobmanager
6
+ * Project Page: http://rubyforge.org/projects/jobmanager/
2
7
 
3
8
  == DESCRIPTION:
4
9
 
@@ -381,7 +386,6 @@ None (known).
381
386
  === Designing Patterns
382
387
  * Homepage: http://www.designingpatterns.com
383
388
  * Blogs: http://blogs.designingpatterns.com
384
- * Twitter: http://www.twitter.com/TonyDesignP
385
389
 
386
390
  == SUPPORT:
387
391
  Please post questions, concerns, or requests for enhancement to the forums on
@@ -424,3 +428,4 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
424
428
  SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
425
429
 
426
430
  == SHARE AND ENJOY!
431
+
@@ -4,7 +4,6 @@ require 'erb'
4
4
  require 'ostruct'
5
5
  require 'stringio'
6
6
 
7
- require 'rubygems'
8
7
  require 'logrotate'
9
8
  require 'relative'
10
9
  require 'configtoolkit'
@@ -1,6 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- require 'rubygems'
4
3
  require 'configtoolkit'
5
4
 
6
5
  module JobManager
@@ -2,7 +2,6 @@ require 'syslog'
2
2
  require 'logger'
3
3
  require 'etc'
4
4
 
5
- require 'rubygems'
6
5
  require 'syslog_logger'
7
6
 
8
7
 
@@ -4,7 +4,7 @@ module JobManager #:nodoc:
4
4
  module VERSION #:nodoc:
5
5
  MAJOR = 1
6
6
  MINOR = 1
7
- TINY = 2
7
+ TINY = 3
8
8
 
9
9
  STRING = [MAJOR, MINOR, TINY].join('.')
10
10
  end
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.2
4
+ version: 1.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - DesigningPatterns