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

class GitImerge < Formula
  homepage "https://github.com/mhagger/git-imerge"
  url "https://github.com/mhagger/git-imerge/archive/0.7.0.tar.gz"
  sha1 "b3bab94743a79426ea79c1b5e503020ef7fbf2ec"

  def install
    bin.install "git-imerge"
  end

  test do
    system "#{bin}/git-imerge", "-h"
  end
end