struct

Mint::Cli::Start::Flags

Inherits Struct < Value < Object

Extend the flags struct to include the flag

Constants

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}, "generate_source_maps" => {kind: "bool", type: "Bool", default: "false", description: {"--generate-source-maps", "If specified, source maps will be generated."}, short: "nil", long: "generate-source-maps", is_required: true}, "hash_routing" => {kind: "bool", type: "Bool", default: "false", description: {"--hash-routing", "If specified, the hash routing will be used."}, short: "nil", long: "hash-routing", 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

new(command : Admiral::Command)

Instance methods

__help__
format
Source
generate_source_maps
Source
hash_routing
Source
host
Source
inspect(io)
Source
no_reload
Source
port
Source
runtime
Source
validate!(command)