rage/HomebrewFormula/rage.rb
2020-03-25 14:55:27 +13:00

31 lines
1.3 KiB
Ruby

class Rage < Formula
desc "[BETA] A simple, secure, and modern encryption tool."
homepage "https://str4d.xyz/rage"
url "https://github.com/str4d/rage/archive/v0.4.0.tar.gz"
sha256 "612754f0a78517dd3ac490a9860b996317dbabcc745e307b9c6e6cab4379c1e7"
version "0.4.0"
depends_on "rust" => :build
def install
system "cargo", "build", "--release", "--package", "rage"
bin.install "target/release/rage"
bin.install "target/release/rage-keygen"
end
test do
# Test key generation
system "#{bin}/rage-keygen -o #{testpath}/output.txt"
assert_predicate testpath/"output.txt", :exist?
# Test encryption
(testpath/"test.txt").write("Hello World!\n")
system "#{bin}/rage -r age1y8m84r6pwd4da5d45zzk03rlgv2xr7fn9px80suw3psrahul44ashl0usm -o #{testpath}/test.txt.age #{testpath}/test.txt"
assert_predicate testpath/"test.txt.age", :exist?
assert File.read(testpath/"test.txt.age").start_with?("age-encryption.org")
# Test decryption
(testpath/"test.key").write("AGE-SECRET-KEY-1TRYTV7PQS5XPUYSTAQZCD7DQCWC7Q77YJD7UVFJRMW4J82Q6930QS70MRX")
assert_equal "Hello World!", shell_output("#{bin}/rage -d -i #{testpath}/test.key #{testpath}/test.txt.age").strip
end
end