루비 코드를 어떻게 문서화합니까? 루비 코드를 문서화할 때 특정 코드 규칙이 있습니까?예를 들어 다음 코드 스니펫이 있습니다. require 'open3' module ProcessUtils # Runs a subprocess and applies handlers for stdout and stderr # Params: # - command: command line string to be executed by the system # - outhandler: proc object that takes a pipe object as first and only param (may be nil) # - errhandler: proc object that takes a pipe object as first and ..