37 lines
1.6 KiB
Ruby
37 lines
1.6 KiB
Ruby
class Dory < Formula
|
|
desc "Development proxy for docker"
|
|
homepage "https://github.com/freedomben/dory"
|
|
url "https://github.com/FreedomBen/dory/archive/refs/tags/v1.2.0.tar.gz"
|
|
sha256 "8c385d898aed2de82f7d0ab5c776561ffe801dd4b222a07e25e5837953355b81"
|
|
license "MIT"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, arm64_monterey: "baf1bf19aae6f4be3df208ba5cf524cb9d4179fd8d2e11ffc74d4f676033e670"
|
|
sha256 cellar: :any_skip_relocation, arm64_big_sur: "baf1bf19aae6f4be3df208ba5cf524cb9d4179fd8d2e11ffc74d4f676033e670"
|
|
sha256 cellar: :any_skip_relocation, monterey: "2b997c97ef0977274fc7cf99d73c7685d641f7f512c48fc96067dcff3fe6e138"
|
|
sha256 cellar: :any_skip_relocation, big_sur: "2b997c97ef0977274fc7cf99d73c7685d641f7f512c48fc96067dcff3fe6e138"
|
|
sha256 cellar: :any_skip_relocation, catalina: "2b997c97ef0977274fc7cf99d73c7685d641f7f512c48fc96067dcff3fe6e138"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "dc25156512dc5b729b7b732d58752f4d7b17d19c884f1f5c6db21e42db9244f2"
|
|
end
|
|
|
|
depends_on "ruby@2.7"
|
|
|
|
def install
|
|
ENV["GEM_HOME"] = libexec
|
|
system "gem", "build", "#{name}.gemspec"
|
|
system "gem", "install", "#{name}-#{version}.gem"
|
|
bin.install libexec/"bin/#{name}"
|
|
bin.env_script_all_files(libexec/"bin", GEM_HOME: ENV["GEM_HOME"])
|
|
end
|
|
|
|
test do
|
|
shell_output(bin/"dory")
|
|
|
|
system "#{bin}/dory", "config-file"
|
|
assert_predicate testpath/".dory.yml", :exist?, "Dory could not generate config file"
|
|
|
|
version = shell_output(bin/"dory version")
|
|
assert_match version.to_s, version, "Unexpected output of version"
|
|
end
|
|
end
|