ea253d7628
Closes #7797. Signed-off-by: Tomasz Pajor <tomek@polishgeeks.com>
17 lines
453 B
Ruby
17 lines
453 B
Ruby
class GithubKeygen < Formula
|
|
desc "Bootstrap GitHub SSH configuration"
|
|
homepage "https://github.com/dolmen/github-keygen"
|
|
url "https://github.com/dolmen/github-keygen/archive/v1.302.tar.gz"
|
|
sha256 "cc703512ab67837a7025e7d018731e97ddc6a943f87ccd8620986d5757991a48"
|
|
head "https://github.com/dolmen/github-keygen.git"
|
|
|
|
bottle :unneeded
|
|
|
|
def install
|
|
bin.install "github-keygen"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/github-keygen"
|
|
end
|
|
end
|