homebrew-core/Formula/hubflow.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

17 lines
450 B
Ruby

# Note: pull from git tag to get submodules
class Hubflow < Formula
desc "GitFlow for GitHub"
homepage "https://datasift.github.io/gitflow/"
url "https://github.com/datasift/gitflow.git", :tag => "1.5.2"
head "https://github.com/datasift/gitflow.git"
def install
ENV["INSTALL_INTO"] = libexec
system "./install.sh", "install"
bin.write_exec_script libexec/"git-hf"
end
test do
system bin/"git-hf", "version"
end
end