-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
Summary
Distribute ralph-starter via Homebrew for easier installation on macOS and Linux.
Why Homebrew?
- Language-agnostic - Can swap implementation without disrupting users
- Developer preference - Many choose brew over npm when both available
- Broader audience - Reaches non-Node.js developers
- Cross-platform - Works on macOS AND Linux
- Auto-updates -
brew upgradeupdates all tools
Implementation Steps
- Create Homebrew tap repository:
rubenmarcus/homebrew-tap - Create formula file for ralph-starter
- Handle Node.js dependency (bundle or require)
- Set up automated formula updates on releases
Formula Example
class RalphStarter < Formula
desc "AI-powered development loop orchestrator"
homepage "https://github.com/rubenmarcus/ralph-starter"
url "https://registry.npmjs.org/ralph-starter/-/ralph-starter-0.1.1.tgz"
sha256 "..."
license "MIT"
depends_on "node"
def install
system "npm", "install", *Language::Node.std_npm_install_args(libexec)
bin.install_symlink Dir["#{libexec}/bin/*"]
end
endInstallation
brew tap rubenmarcus/tap
brew install ralph-starterReactions are currently unavailable