class Xcodeproj::XCScheme::AbstractSchemeAction

def post_actions

Returns:
  • (Array) -
def post_actions
  post_actions = @xml_element.elements['PostActions']
  return nil unless post_actions
  post_actions.get_elements('ExecutionAction').map do |entry_node|
    ExecutionAction.new(entry_node)
  end
end