blob: 3db4bad5ac587583344e0b73510eaeb9ab38db34 (
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/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
  |