Sha256: 512978cbe15bef242a4ba17dabdc7932e5d7847408274a2cc8c7b637f6ef8b4d
Contents?: true
Size: 610 Bytes
Versions: 30
Compression:
Stored size: 610 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 "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
30 entries across 30 versions & 1 rubygems