gitignore/pkg/brew/kignore-bin.rb

17 lines
444 B
Ruby
Raw Normal View History

2022-10-21 02:41:32 +02:00
class KignoreBin < Formula
2022-10-21 01:27:57 +02:00
desc "Easily add items to .gitignore and cleanup afterwards"
homepage "https://github.com/kjuulh/gitignore"
2022-10-21 02:41:32 +02:00
version "0.1.2"
2022-10-21 01:27:57 +02:00
license "MIT"
if OS.mac?
2022-10-21 02:44:23 +02:00
url "https://github.com/kjuulh/gitignore/releases/download/#{version}/kignore-#{version}-x86_64-apple-darwin.tar.gz"
2022-10-21 02:39:57 +02:00
sha256 "8eacb5cf0d4116161f291006bc6c91b8ce2760eab0fcf8cb79a62c246bdfff89"
2022-10-21 01:27:57 +02:00
end
def install
bin.install "kignore"
end
end