Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions Formula/yek.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
class Yek < Formula
desc "Serializes text files for LLM consumption using gitignore and Git history"
homepage "https://github.com/bodo-run/yek"
url "https://github.com/bodo-run/yek/archive/refs/tags/v0.25.2.tar.gz"
sha256 "9e8dc80daafcadff586cff6d1e3f586e25cd43cd60bc7bbec1ac8b1a96a359da"
license "MIT"
head "https://github.com/bodo-run/yek.git", branch: "main"

livecheck do
url :stable
strategy :github_latest
end

depends_on "rust"

def install
system "cargo", "install", "--path", ".", "--root", prefix
end

test do
system bin/"yek", "--version"
end
end
Loading