2012-06-11 11:35:28 +00:00
|
|
|
class EasyGit < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Wrapper to simplify learning and using git"
|
2015-08-03 12:55:31 +00:00
|
|
|
homepage "https://people.gnome.org/~newren/eg/"
|
|
|
|
url "https://people.gnome.org/~newren/eg/download/1.7.5.2/eg"
|
|
|
|
version "1.7.5.2"
|
|
|
|
sha256 "59bb4f8b267261ab3d48c66b957af851d1a61126589173ebcc20ba9f43c382fb"
|
2012-06-11 11:35:28 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
bin.install "eg"
|
|
|
|
end
|
|
|
|
|
2013-03-25 18:34:46 +00:00
|
|
|
test do
|
|
|
|
system "#{bin}/eg", "help"
|
2012-06-11 11:35:28 +00:00
|
|
|
end
|
|
|
|
end
|