module Xcodeproj::Project::XCProjHelper

def execute(command)

Returns:
  • (Array) - A tuple where the firs element
def execute(command)
  output = `#{command} 2>&1`
  success = $?.exitstatus.zero?
  [success, output]
end