Method: Itsi::Server::Config.pid_file_path

Defined in:
lib/itsi/server/config.rb

.pid_file_pathObject



237
238
239
240
241
242
243
# File 'lib/itsi/server/config.rb', line 237

def self.pid_file_path
  if Dir.exist?("tmp")
    File.join("tmp", "itsi.pid")
  else
    ".itsi.pid"
  end
end