homebrew-core/Formula/rmate.rb

18 lines
410 B
Ruby
Raw Normal View History

require "formula"
class Rmate < Formula
desc "Edit files from an SSH session in TextMate"
homepage "https://github.com/textmate/rmate"
url "https://github.com/textmate/rmate/archive/v1.5.7.tar.gz"
sha1 "2f139c88c128b89626da56a00441602e7121be62"
2014-10-10 13:38:35 +00:00
head "https://github.com/textmate/rmate.git"
def install
bin.install "bin/rmate"
end
2014-10-10 13:38:35 +00:00
test do
system "#{bin}/rmate", "--version"
end
end