---
# @action Installs CocoaPods
# Installs CocoaPods on macOS
- name: Include tasks if the system is Mac OS X
  become: true
  block:
    - include_tasks: "install-{{ ansible_os_family }}.yml"
  when: ansible_os_family == 'Darwin'
