jarvy 0.3.0

Jarvy is a fast, cross-platform CLI that installs and manages developer tools across macOS and Linux.
Documentation
//! up - Upbound CLI for Crossplane
//!
//! This tool uses the ToolSpec pattern for declarative installation.
//! Note: Requires Homebrew tap on macOS/Linux, not supported on Windows.

use crate::define_tool;

define_tool!(UP, {
    command: "up",
    macos: { brew: "upbound/tap/up" },
    linux: { brew: "upbound/tap/up" },
    bsd: { pkg: "up" },
    // No Windows support
});

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn up_registration_shape() {
        assert_eq!(UP.command, "up");
        let mac = UP.macos.expect("must support macOS");
        assert_eq!(mac.brew, Some("upbound/tap/up"));
    }
}