diff options
| -rw-r--r-- | Library/Formula/git-encrypt.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/git-encrypt.rb b/Library/Formula/git-encrypt.rb new file mode 100644 index 000000000..a4ef24bc1 --- /dev/null +++ b/Library/Formula/git-encrypt.rb @@ -0,0 +1,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 |
