class Terrapin::CommandLine::PopenRunner

def call(command, env = {}, options = {})

def call(command, env = {}, options = {})
  with_modified_environment(env) do
    IO.popen(command, "r", options) do |pipe|
      Output.new(pipe.read)
    end
  end
end