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

Version Path
et_full_system-8.1.0.pre.rc15 exe/et_full_system
et_full_system-8.1.0.pre.rc14 exe/et_full_system
et_full_system-8.1.0.pre.rc13 exe/et_full_system
et_full_system-8.1.0.pre.rc12 exe/et_full_system
et_full_system-8.1.0.pre.rc11 exe/et_full_system
et_full_system-8.1.0.pre.rc10 exe/et_full_system
et_full_system-8.1.0.pre.rc9 exe/et_full_system
et_full_system-8.1.0.pre.rc8 exe/et_full_system
et_full_system-8.1.0.pre.rc7 exe/et_full_system
et_full_system-8.1.0.pre.rc6 exe/et_full_system
et_full_system-8.1.0.pre.rc5 exe/et_full_system
et_full_system-8.1.0.pre.rc4 exe/et_full_system
et_full_system-8.1.0.pre.rc3 exe/et_full_system
et_full_system-8.1.0.pre.rc2 exe/et_full_system
et_full_system-8.1.0.pre.rc1 exe/et_full_system
et_full_system-8.0.4 exe/et_full_system
et_full_system-8.0.3 exe/et_full_system
et_full_system-8.0.2 exe/et_full_system
et_full_system-8.0.1 exe/et_full_system
et_full_system-8.0.0 exe/et_full_system