require "formula" class Fzf < Formula homepage "https://github.com/junegunn/fzf" url "https://github.com/junegunn/fzf/archive/0.8.8.tar.gz" sha1 "b063d409251fddd3602c1f8b7b52494a85607050" def install prefix.install "install", "uninstall", "fzf", "fzf-completion.bash", "fzf-completion.zsh" bin.install_symlink prefix/"fzf" (prefix/"plugin").install "plugin/fzf.vim" end def caveats; <<-EOS.undent To install useful keybindings and fuzzy completion: #{prefix}/install To use fzf in Vim, add the following line to your .vimrc: set rtp+=#{prefix} EOS end test do (testpath/"list").write %w[hello world].join($/) assert_equal "world", shell_output("cat #{testpath}/list | #{bin}/fzf -f wld").chomp end end