mirror of
https://github.com/PR0M3TH3AN/VoxVera.git
synced 2025-09-08 06:58:42 +00:00
16 lines
339 B
Ruby
16 lines
339 B
Ruby
class Voxvera < Formula
|
|
desc "Generate QR-coded flyers"
|
|
homepage "https://github.com/PR0M3TH3AN/VoxVera"
|
|
url "https://github.com/PR0M3TH3AN/VoxVera/releases/latest/download/voxvera"
|
|
version "0.1.0"
|
|
sha256 "<insert-sha256>"
|
|
|
|
def install
|
|
bin.install "voxvera"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/voxvera", "--help"
|
|
end
|
|
end
|