Skip to content

Commit

Permalink
0.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
kpgalligan committed Apr 24, 2024
1 parent 8e14ee1 commit d5734a6
Showing 1 changed file with 6 additions and 19 deletions.
25 changes: 6 additions & 19 deletions Formula/gitportal.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,11 @@ class Gitportal < Formula
desc "GitPortal CLI Tool"
homepage "https://github.com/touchlab/GitPortal"
url "https://github.com/touchlab/GitPortal.git",
tag: "0.5.2",
revision: "b28825ab637b8614c817b929d58971a3997fce20"
tag: "0.5.3",
revision: "1a14206806005bb6bd7367d770d47a364a9903e0"
license "Apache-2.0"
head "https://github.com/touchlab/GitPortal.git", branch: "main"

# bottle do
# sha256 cellar: :any_skip_relocation, arm64_sonoma: "5bb02ca24ea211322ab73a829dd82056ab51045ce86241239a6bd8b6f7147b38"
# sha256 cellar: :any_skip_relocation, arm64_ventura: "10a1bef60f5bff99f07eac8f8f638ece20a70be8997d890779d2c1049f675a1a"
# sha256 cellar: :any_skip_relocation, arm64_monterey: "9cb99bff69b8d12c35c30e5363bc39586cc502c05e76c25e8eebc87249c54ba3"
# sha256 cellar: :any_skip_relocation, sonoma: "65fd44b5c04141239380d8e0f203f0ddb99b63fce499879cffa512336bfd5111"
# sha256 cellar: :any_skip_relocation, ventura: "09121f1f8f89b5be892f2a04300d4368dcbd8b15a820291c3922bfeb846eaf96"
# sha256 cellar: :any_skip_relocation, monterey: "cfdb490e0cc99f0e9b0c447ac2e3987ce7d388a3a0a2ec5680c69f0d12666f6e"
# end

depends_on "gradle" => :build
depends_on xcode: ["14.1", :build]
depends_on :macos
Expand All @@ -26,12 +17,8 @@ def install
bin.install "cli/build/bin/macos#{suffix}/releaseExecutable/cli.kexe" => "gitportal"
end

# test do
# output = shell_output(bin/"xcode-kotlin info --only")
# assert_match "Bundled plugin version:\t\t#{version}", output
# assert_match(/Installed plugin version:\s*(?:(?:\d+)\.(?:\d+)\.(?:\d+)|none)/, output)
# assert_match(/Language spec installed:\s*(?:Yes|No)/, output)
# assert_match(/LLDB init installed:\s*(?:Yes|No)/, output)
# assert_match(/LLDB Xcode init sources main LLDB init:\s*(?:Yes|No)/, output)
# end
test do
output = shell_output(bin/"gitportal --help")
assert_match "Usage: gitportal options_list", output
end
end

0 comments on commit d5734a6

Please sign in to comment.