class Protobuf::CLI

def configure_process_name(app_file)

Re-write the $0 var to have a nice process name in ps.
def configure_process_name(app_file)
  debug_say 'Configuring process name'
  $0 = "rpc_server --#{@mode} #{options.host}:#{options.port} #{app_file}"
end