class Envirobly::Git::Commit
def git(cmd)
def git(cmd) Open3.popen3("git #{cmd}", chdir: @working_dir) do |stdin, stdout, stderr, thread| stdin.close OUTPUT.new stdout.read, stderr.read, thread.value.exitstatus, thread.value.success? end end
def git(cmd) Open3.popen3("git #{cmd}", chdir: @working_dir) do |stdin, stdout, stderr, thread| stdin.close OUTPUT.new stdout.read, stderr.read, thread.value.exitstatus, thread.value.success? end end