jarvy 0.0.5

Jarvy is a fast, cross-platform CLI that installs and manages developer tools across macOS and Linux.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Freelens - Open-source Kubernetes IDE (fork of Lens)
//!
//! Freelens is a free, open-source Kubernetes IDE that provides a graphical
//! interface for managing Kubernetes clusters. It's a community fork of the
//! original Lens IDE.
//!
//! Homepage: https://github.com/freelensapp/freelens

use crate::define_tool;

define_tool!(FREELENS, {
    command: "freelens",
    macos: { cask: "freelens" },
    linux: { brew: "freelens" },
    windows: { winget: "freelensapp.Freelens" },
});