Sha256: 2ee8fbf7dd77f0c79aac9fe73db14821a24bc2626779f6db56cc6ef81d96830d
Contents?: true
Size: 739 Bytes
Versions: 59
Compression:
Stored size: 739 Bytes
Contents
#!/usr/bin/env ruby # frozen_string_literal: true require "rubygems" require "thor" 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
59 entries across 59 versions & 1 rubygems