#!/bin/bash -e
#
# script/bootstrap
# mas
#
# Installs gem tools, installs Swift dependencies via CocoaPods and sorts
# the Xcode project file references.
#

main() {
  echo "==> 👢 Bootstrapping"
  bundle install
  brew bundle install --verbose
  carthage bootstrap --platform macOS --cache-builds

  script/sort
}

main
