class Lolcommits::CaptureCygwin

Public Instance Methods

capture() click to toggle source
# File lib/lolcommits/capturer/capture_cygwin.rb, line 5
def capture
  _stdin, stdout, _stderr = Open3.popen3("#{executable_path} /filename `cygpath -w #{capture_path}`#{delay_arg}")

  # need to read the output for something to happen
  stdout.read
end