---
- name: "Ensure {{ app_name }}'s Tap is installed"
  become: false
  community.general.homebrew_tap:
    name: cantino/mcfly
    url: https://github.com/cantino/mcfly

- name: "Ensure {{ app_name }} is installed"
  become: false
  community.general.homebrew:
    name: mcfly
    state: "{{ app_state | default('present') }}"
