blob: a4ef24bc16196f107e1cfb1f0d3e41d7a57352f7 (
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'
md5 '72d0e662eda75f26d8f84caffb11b2db'
head 'http://github.com/shadowhand/git-encrypt.git', :branch => 'master'
def install
bin.install 'gitcrypt'
end
end
|