Sha256: d3c7a42aef183a45f71a2c7013bef2193aa33c3306f0c52d259a354e73c4d5bf
Contents?: true
Size: 764 Bytes
Versions: 141
Compression:
Stored size: 764 Bytes
Contents
#!/usr/bin/env ruby # frozen_string_literal: true require "rubygems" require "thor" require "et_full_system" require "et_full_system/cli" require "et_full_system/version" module EtFullSystem class RootCommand < Thor desc "local command(s)", "Performs commands on a local server (non docker)" subcommand "local", LocalCommand desc "docker command(s)", "Performs commands on a docker server" subcommand "docker", DockerCommand desc "workspace command(s)", "Performs commands on a et full system workspace" subcommand "workspace", WorkspaceCommand desc "version", "Shows the version of et_full_system" def version puts ::EtFullSystem::VERSION end map "--version": :version end end EtFullSystem::RootCommand.start
Version data entries
141 entries across 141 versions & 1 rubygems