struct Mint::Cli::Start::Flags

Overview

Extend the flags struct to include the flag

Defined in:

commands/start.cr:3
commands/start.cr:8
commands/start.cr:11
commands/start.cr:15
commands/start.cr:19
commands/start.cr:24
commands/start.cr:29

Constant Summary

DESCRIPTIONS = {} of String => String
SPECS = {"__help__" => {kind: "bool", type: "Bool", default: "false", description: {"--help", "Displays help for the current command."}, short: "nil", long: "help", is_required: true}, "runtime" => {kind: "nil", type: "String", default: "nil", description: {"--runtime", "If specified, the supplied runtime will be used instead of the default."}, short: "nil", long: "runtime", is_required: false}, "no_reload" => {kind: "bool", type: "Bool", default: "false", description: {"--no-reload", "Do not reload the browser when something changes."}, short: "nil", long: "no-reload", is_required: true}, "format" => {kind: "bool", type: "Bool", default: "false", description: {"--format", "Formats the source files when they change."}, short: "nil", long: "format", is_required: true}, "host" => {kind: "nil", type: "String", default: "ENV[\"HOST\"]? || \"0.0.0.0\"", description: {"--host, -h (default: ENV[\"HOST\"]? || \"0.0.0.0\")", "The host to serve the application on."}, short: "h", long: "host", is_required: true}, "port" => {kind: "nil", type: "Int32", default: "(ENV[\"PORT\"]? || \"3000\").to_i", description: {"--port, -p (default: (ENV[\"PORT\"]? || \"3000\").to_i)", "The port to serve the application on."}, short: "p", long: "port", is_required: true}, "env" => {kind: "nil", type: "String", default: "nil", description: {"--env, -e", "Loads the given .env file."}, short: "e", long: "env", is_required: false}} 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? #

[View source]
def format #

[View source]
def host #

[View source]
def inspect(io) #

[View source]
def no_reload #

[View source]
def port #

[View source]
def runtime : String? #

[View source]
def validate!(command) #