class Xcodeproj::XCScheme::AbstractSchemeAction

def add_post_action(post_action)

Parameters:
  • post_action (ExecutionAction) --
def add_post_action(post_action)
  post_actions = @xml_element.elements['PostActions'] || @xml_element.add_element('PostActions')
  post_actions.add_element(post_action.xml_element)
end