README.markdown in bluepill-0.0.15 vs README.markdown in bluepill-0.0.16

- old
+ new

@@ -25,14 +25,15 @@ process.start_command = "/usr/bin/some_start_command" process.pid_file = "/tmp/some_pid_file.pid" end end -Note that since we specified a PID file and start command, bluepill assumes the process will daemonize itself. If we wanted bluepill to daemonize it for us, we can do: +Note that since we specified a PID file and start command, bluepill assumes the process will daemonize itself. If we wanted bluepill to daemonize it for us, we can do (note we still need to specify a PID file): Bluepill.application("app_name") do |app| app.process("process_name") do |process| process.start_command = "/usr/bin/some_start_command" + process.pid_file = "/tmp/some_pid_file.pid" process.daemonize = true end end If you don't specify a stop command, a TERM signal will be sent by default. Similarly, the default restart action is to issue stop and then start. \ No newline at end of file