-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
49 additions
and
161 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 7 additions & 7 deletions
14
deployment/homebrew/kdash.rb.template → deployment/homebrew/jwt-ui.rb.template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
|
||
# Documentation: https://docs.brew.sh/Formula-Cookbook | ||
# https://rubydoc.brew.sh/Formula | ||
class jwt-ui < Formula | ||
desc "A fast and simple dashboard for Kubernetes written in Rust" | ||
class JwtUi < Formula | ||
desc "A Terminal UI for decoding/encoding JSON Web Tokens" | ||
homepage "https://github.com/jwt-rs/jwt-ui" | ||
if OS.mac? | ||
url "https://github.com/jwt-rs/jwt-ui/releases/download/$version/jwt-ui-macos.tar.gz" | ||
url "https://github.com/jwt-rs/jwt-ui/releases/download/$version/jwtui-macos.tar.gz" | ||
sha256 "$hash_mac" | ||
else | ||
url "https://github.com/jwt-rs/jwt-ui/releases/download/$version/jwt-ui-linux.tar.gz" | ||
url "https://github.com/jwt-rs/jwt-ui/releases/download/$version/jwtui-linux.tar.gz" | ||
sha256 "$hash_linux" | ||
end | ||
version "$version" | ||
license "MIT" | ||
|
||
def install | ||
bin.install "jwt-ui" | ||
ohai "You're done! Run with \"jwt-ui\"" | ||
ohai "For runtime flags, see \"jwt-ui --help\"" | ||
bin.install "jwtui" | ||
ohai "You're done! Run with \"jwtui\"" | ||
ohai "For runtime flags, see \"jwtui --help\"" | ||
end | ||
end |
10 changes: 5 additions & 5 deletions
10
deployment/scoop/kdash.json.template → deployment/scoop/jwt-ui.json.template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters