Method: Nanite::PidFile#write

Defined in:
lib/nanite/pid_file.rb

#writeObject



23
24
25
26
27
# File 'lib/nanite/pid_file.rb', line 23

def write
  ensure_dir
  open(@pid_file,'w') {|f| f.write(Process.pid) }
  File.chmod(0644, @pid_file)
end