homebrew-core/Formula/v.rb
2015-10-30 17:24:03 +08:00

20 lines
578 B
Ruby

class V < Formula
desc "Z for vim"
homepage "https://github.com/rupa/v"
url "https://github.com/rupa/v/archive/v1.0.tar.gz"
sha256 "fc25860c29a2d02908f4c2b6ecf0499e0121393a0ec13ec1c047f7a6ead100f1"
head "https://github.com/rupa/v.git"
bottle :unneeded
def install
bin.install "v"
man1.install "v.1"
end
test do
(testpath/".vimrc").write "set viminfo='25,\"50,n#{testpath}/.viminfo"
system "/usr/bin/vim", "-u", testpath/".vimrc", "+wq", "test.txt"
assert_equal "#{testpath}/test.txt", shell_output("#{bin}/v -a --debug").chomp
end
end