class Antigen < Formula desc "Plugin manager for zsh, inspired by oh-my-zsh and vundle." homepage "http://antigen.sharats.me/" url "https://github.com/zsh-users/antigen/releases/download/v1.3.1/v1.3.1.tar.gz" sha256 "58bc36b898ce02c8e06f8e69f65edae7c340a9870a2fd2724df3dd50bd338d8e" head "https://github.com/zsh-users/antigen.git" bottle :unneeded def install pkgshare.install "bin/antigen.zsh" end def caveats; <<-EOS.undent To activate antigen, add the following to your ~/.zshrc: source #{HOMEBREW_PREFIX}/share/antigen/antigen.zsh EOS end test do (testpath/".zshrc").write "source #{HOMEBREW_PREFIX}/share/antigen/antigen.zsh\n" system "zsh", "--login", "-i", "-c", "antigen help" end end