aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/rmate.rb
blob: c3674c8d8d49c7ec6e252925adf9a8b5f61ac3e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require "formula"

class Rmate < Formula
  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