Flowdock
start() public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/shell/system-command.rb, line 49
    def start
      @pid, @pipe_in, @pipe_out = @shell.process_controller.sfork(self) {
        Dir.chdir @shell.pwd
        exec(@command, *@opts)
      }
      if @input
        start_export
      end
      start_import
    end
Register or log in to add new notes.