daemons 0.4.0 → 0.4.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/README CHANGED
@@ -1,4 +1,4 @@
1
- = Daemons Version 0.4.0
1
+ = Daemons Version 0.4.1
2
2
 
3
3
  (See Releases for release-specific information)
4
4
 
@@ -92,7 +92,7 @@ server tasks as daemon processes.
92
92
 
93
93
  # the parent process continues to run
94
94
 
95
- # we can even control your tasks, for example stop them
95
+ # we can even control our tasks, for example stop them
96
96
  task1.stop
97
97
  task2.stop
98
98
 
data/Releases CHANGED
@@ -1,6 +1,11 @@
1
1
  = Daemons Release History
2
2
 
3
3
 
4
+ == Release 0.4.1: September 11, 2005
5
+
6
+ * Bugfix for 'run' command line mode: didn't work anymore in 0.4.0, fixed
7
+
8
+
4
9
  == Release 0.4.0: July 30, 2005
5
10
 
6
11
  * Two completely new operation modes:
@@ -59,7 +59,7 @@ require 'daemons/controller'
59
59
  #
60
60
  module Daemons
61
61
 
62
- VERSION = "0.4.0"
62
+ VERSION = "0.4.1"
63
63
 
64
64
  require 'daemons/daemonize'
65
65
 
@@ -62,7 +62,8 @@ module Daemons
62
62
  when 'start'
63
63
  @group.new_application.start
64
64
  when 'run'
65
- @group.new_application.run
65
+ @options[:ontop] ||= true
66
+ @group.new_application.start
66
67
  when 'stop'
67
68
  @group.stop_all
68
69
  when 'restart'
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.11
3
3
  specification_version: 1
4
4
  name: daemons
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.4.0
7
- date: 2005-07-30 00:00:00 +02:00
6
+ version: 0.4.1
7
+ date: 2005-09-11 00:00:00 +02:00
8
8
  summary: A toolkit to create and control daemons in different ways
9
9
  require_paths:
10
10
  - lib