struct Mint::Cli::Clean::Flags

Overview

Extend the flags struct to include the flag

Defined in:

commands/clean.cr:3
commands/clean.cr:8

Constant Summary

DESCRIPTIONS = {} of String => String
SPECS = {"env" => {kind: "nil", type: "String", default: "nil", description: {"--env, -e", "Loads the given .env file"}, short: "e", long: "env", is_required: false}, "__help__" => {kind: "bool", type: "Bool", default: "false", description: {"--help", "Displays help for the current command."}, short: "nil", long: "help", is_required: true}, "global" => {kind: "bool", type: "Bool", default: "false", description: {"--global, -g", "If specified, cleans global artifacts used to cache Mint packages"}, short: "g", long: "global", is_required: true}} of String => NamedTuple(kind: String, type: String, default: String, description: Tuple(String, String | ::Nil), short: String | ::Nil, long: String, is_required: Bool)

Constructors

Instance Method Summary

Constructor Detail

def self.new(command : Admiral::Command) #

Instance Method Detail

def __help__ #

def env : String? #

def global #

[View source]
def inspect(io) #

[View source]
def validate!(command) #