This supports listing VMs, taking options about what information to display. This is the first commit needing to support subcommands, so this adds the infrastructure for handling CLI commands to UbiRodish.
8 lines
184 B
Ruby
8 lines
184 B
Ruby
# frozen_string_literal: true
|
|
|
|
UbiRodish.on("vm") do
|
|
# :nocov:
|
|
autoload_subcommand_dir("cli-commands/vm") unless Config.production? || ENV["FORCE_AUTOLOAD"] == "1"
|
|
# :nocov:
|
|
end
|