Skip to content

Commit

Permalink
Merge pull request #11 from meltwater/kustomize_dyff
Browse files Browse the repository at this point in the history
Add kustomize and dyff
  • Loading branch information
dezmodue authored Apr 24, 2023
2 parents a196627 + 43f3232 commit fdad1db
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Formula/dyff.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
class Dyff < Formula
version "v1.5.7"
desc "A diff tool for YAML files, and sometimes JSON."
homepage "https://github.com/meltwater/homebrew-fks"
url "https://github.com/meltwater/homebrew-fks/releases/download/dyff-#{version}/dyff-darwin-amd64.tar.gz"
sha256 "8c616383ef5d8e8127ce9e620464f88a2195ff0906378864df69405baea1f2ad"

def install
bin.install "dyff"
end

# Homebrew requires tests.
test do
assert_match "dyff version #{version}", shell_output("#{bin}/dyff version", 0)
end
end
16 changes: 16 additions & 0 deletions Formula/kustomize.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
class Kustomize < Formula
version "v5.0.1"
desc "Customize raw, template-free YAML files."
homepage "https://github.com/meltwater/homebrew-fks"
url "https://github.com/meltwater/homebrew-fks/releases/download/kustomize-#{version}/kustomize-darwin-amd64.tar.gz"
sha256 "4a2b9f7fad0355c8bea08da6dd9c48e790df5f357983280998d80b8dc7ad3def"

def install
bin.install "kustomize"
end

# Homebrew requires tests.
test do
assert_match "#{version}", shell_output("#{bin}/kustomize version", 0)
end
end
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@ This [homebrew](https://brew.sh) tap is created for convenience. It ensures that

Current CLI binaries in this tap:

- dyff
- kubectl
- kops
- kustomize
- helm2
- helm3
- helmfile
Expand Down

0 comments on commit fdad1db

Please sign in to comment.