├── README.md └── context_pilot.rb /README.md: -------------------------------------------------------------------------------- 1 | # homebrew-context_pilot 2 | Context Pilot's homebrew formula 3 | -------------------------------------------------------------------------------- /context_pilot.rb: -------------------------------------------------------------------------------- 1 | class ContextPilot < Formula 2 | desc "Get Context at your code cursor!" 3 | homepage "https://github.com/krshrimali/context-pilot-rs" 4 | url "https://github.com/krshrimali/context-pilot-rs/archive/refs/tags/v0.0.5.tar.gz" 5 | sha256 "72c3a69a5ae256cffcc92ba124a1c013473af3ac0d764ca3ee7943223cf1f439" 6 | license "MIT" 7 | 8 | depends_on "rust" => :build 9 | 10 | def install 11 | system "cargo", "install", *std_cargo_args 12 | end 13 | 14 | test do 15 | system "#{bin}/context_pilot", "--help" 16 | end 17 | end 18 | --------------------------------------------------------------------------------