gitignore/pkg/brew/kignore-bin.rb
2022-10-21 12:08:23 +02:00

18 lines
473 B
Ruby

class KignoreBin < Formula
desc "Easily add items to .gitignore and cleanup afterwards"
homepage "https://github.com/kjuulh/gitignore"
version "0.1.3"
license "MIT"
if OS.mac?
url "https://github.com/kjuulh/gitignore/releases/download/#{version}/kignore-#{version}-x86_64-apple-darwin.tar.gz"
sha256 "fa4e520854f0cc8222625b0398c778d4f474dd7a9ad1da1dd9a326ff7893bd44"
end
def install
bin.install "kignore"
bin.install "git-ignore"
end
end