jarvy 0.5.0

Jarvy is a fast, cross-platform CLI that installs and manages developer tools across macOS and Linux.
//! earthly - build automation for the container era
//!
//! Earthly is a build automation tool for the container era. It allows
//! you to execute all your builds in containers, making them
//! self-contained, reproducible, portable, and parallel.
//!
//! This tool uses the ToolSpec pattern for declarative installation.

use crate::define_tool;

define_tool!(EARTHLY, {
    command: "earthly",
    macos: { brew: "earthly/earthly/earthly" },
    linux: { uniform: "earthly" },
    windows: { winget: "Earthly.Earthly" },
    bsd: { pkg: "earthly" },
    depends_on_one_of: &["docker", "podman"],
});

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

    #[test]
    fn earthly_registration_shape() {
        assert_eq!(EARTHLY.command, "earthly");
        let mac = EARTHLY.macos.expect("must support macOS");
        assert_eq!(mac.brew, Some("earthly/earthly/earthly"));
        let win = EARTHLY.windows.expect("must support Windows");
        assert_eq!(win.winget, Some("Earthly.Earthly"));
    }
}