homebrew-core/Formula/rmate.rb
2015-06-05 14:47:57 +01:00

17 lines
410 B
Ruby

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"
head "https://github.com/textmate/rmate.git"
def install
bin.install "bin/rmate"
end
test do
system "#{bin}/rmate", "--version"
end
end