blob: d67f990b5996b255b26941197cdee32fee0d7cc6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class GitEncrypt < Formula
homepage 'https://github.com/shadowhand/git-encrypt'
url 'https://github.com/shadowhand/git-encrypt/tarball/0.3.0'
sha1 '3b06d626e1eb33651de24ead3a5a9b10cdd8278a'
head 'https://github.com/shadowhand/git-encrypt.git', :branch => 'master'
def install
bin.install 'gitcrypt'
end
end
|