476a19ce45
Closes Homebrew/homebrew#21371. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
13 lines
351 B
Ruby
13 lines
351 B
Ruby
require 'formula'
|
|
|
|
class GitEncrypt < Formula
|
|
homepage 'https://github.com/shadowhand/git-encrypt'
|
|
url 'https://github.com/shadowhand/git-encrypt/archive/0.3.1.tar.gz'
|
|
sha1 '2a9a0bff06c0ac1a95961cbf61c3efa1c926a294'
|
|
|
|
head 'https://github.com/shadowhand/git-encrypt.git', :branch => 'master'
|
|
|
|
def install
|
|
bin.install 'gitcrypt'
|
|
end
|
|
end
|