f34b45795f
Closes #4524. Signed-off-by: ilovezfs <ilovezfs@icloud.com>
31 lines
1.1 KiB
Ruby
31 lines
1.1 KiB
Ruby
class Transcrypt < Formula
|
|
desc "Configure transparent encryption of files in a Git repo"
|
|
homepage "https://github.com/elasticdog/transcrypt"
|
|
url "https://github.com/elasticdog/transcrypt/archive/v0.9.9.tar.gz"
|
|
sha256 "ff8ec9227b2d5a881b31c5ed9f7d8190e507f0f0ad80751a29a8d8aa8272ece2"
|
|
head "https://github.com/elasticdog/transcrypt.git"
|
|
|
|
bottle :unneeded
|
|
|
|
def install
|
|
bin.install "transcrypt"
|
|
man.install "man/transcrypt.1"
|
|
bash_completion.install "contrib/bash/transcrypt"
|
|
zsh_completion.install "contrib/zsh/_transcrypt"
|
|
end
|
|
|
|
test do
|
|
system "git", "init"
|
|
system bin/"transcrypt", "--password", "guest", "--yes"
|
|
|
|
(testpath/".gitattributes").atomic_write <<-EOS.undent
|
|
sensitive_file filter=crypt diff=crypt
|
|
EOS
|
|
(testpath/"sensitive_file").write "secrets"
|
|
system "git", "add", ".gitattributes", "sensitive_file"
|
|
system "git", "commit", "--message", "Add encrypted version of file"
|
|
|
|
assert_equal `git show HEAD:sensitive_file --no-textconv`.chomp,
|
|
"U2FsdGVkX1/BC5TmOtJ9kCgCq4EmYX0crGU7mAIhDEA="
|
|
end
|
|
end
|