Install the latest version via Homebrew on macOS:

  • Install Homebrew
  • Run the following commands:
    brew tap hazelops/ize
    brew install ize

Now you can run ize from command shell by typing ize in console.

Update ize:

To update ize you should:

  • Uninstall previous version:
    brew uninstall ize
  • Update version in brew repo:
    brew tap hazelops/ize
  • Install:
    brew install ize

Autocomplete

You could use integrated option to add autocompletion to ize commands (bash, fish, zsh, powershell). In this manual we will describe it only for zsh and bash.

To add autocompletion script, use the following manual:

ZSH:

  • If shell completion is not already enabled in your environment, you will need to enable it. You should execute the following once:
    echo "autoload -U compinit; compinit" >> ~/.zshrc
  • To load completions for every new session, execute once:
    ize completion zsh > /usr/local/share/zsh/site-functions/_ize
  • To take effect for this setup you should run source ~/.zshrc or simply restart shell.

    Bash:

    Autocompletion script depends on the bash-completion package. If it is not installed already, you can install it via your OS package manager.

  • To load completions for every new session, you should execute once:
    ize completion bash > /usr/local/etc/bash_completion.d/ize
  • To take effect for this setup you should run source ~/.bashrc or simply restart shell.