Function bodies 5 total
Taskmd class · ruby · L1-L11 (11 LOC)Formula/taskmd.rb
class Taskmd < Formula
desc "Markdown-based task management CLI and web dashboard"
homepage "https://github.com/driangle/taskmd"
version "0.1.6"
license "MIT"
on_macos do
on_arm do
url "https://github.com/driangle/taskmd/releases/download/v0.1.6/taskmd-v0.1.6-darwin-arm64.tar.gz"
sha256 "8840e5c4d625d050c7db3309a4afea908b57bc3a28adb9f9005067163e649d22"
endinstall function · ruby · L29-L34 (6 LOC)Formula/taskmd.rb
def install
bin.install "taskmd-darwin-arm64" => "taskmd" if OS.mac? && Hardware::CPU.arm?
bin.install "taskmd-darwin-amd64" => "taskmd" if OS.mac? && Hardware::CPU.intel?
bin.install "taskmd-linux-arm64" => "taskmd" if OS.linux? && Hardware::CPU.arm?
bin.install "taskmd-linux-amd64" => "taskmd" if OS.linux? && Hardware::CPU.intel?
endVibeview class · ruby · L5-L18 (14 LOC)Formula/vibeview.rb
class Vibeview < Formula
desc "A local viewer for Claude Code sessions"
homepage "https://github.com/driangle/vibeview"
version "0.0.1"
license "MIT"
on_macos do
if Hardware::CPU.intel?
url "https://github.com/driangle/vibeview/releases/download/v0.0.1/vibeview_0.0.1_darwin_amd64.tar.gz"
sha256 "ddde41f2b90737f3db65ca9cc92d4f3b59a00315ea7afbf73eb677bad7b8921f"
define_method(:install) do
bin.install "vibeview"
endViewmd class · ruby · L1-L11 (11 LOC)Formula/viewmd.rb
class Viewmd < Formula
desc "Minimal file viewer for the browser — renders markdown, code, images, and directories"
homepage "https://github.com/driangle/viewmd"
version "0.2.2"
license "MIT"
on_macos do
on_arm do
url "https://github.com/driangle/viewmd/releases/download/v0.2.2/viewmd-v0.2.2-darwin-arm64.tar.gz"
sha256 "f6dc08fb8840f3088128f7cfc5bb8aa3ffaeb3190c3d86be315bfec4b9a8879c"
endinstall function · ruby · L29-L34 (6 LOC)Formula/viewmd.rb
def install
bin.install "viewmd-darwin-arm64" => "viewmd" if OS.mac? && Hardware::CPU.arm?
bin.install "viewmd-darwin-amd64" => "viewmd" if OS.mac? && Hardware::CPU.intel?
bin.install "viewmd-linux-arm64" => "viewmd" if OS.linux? && Hardware::CPU.arm?
bin.install "viewmd-linux-amd64" => "viewmd" if OS.linux? && Hardware::CPU.intel?
end