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

Version Path
et_full_system-1.0.0.pre47 exe/et_full_system
et_full_system-1.0.0.pre46 exe/et_full_system
et_full_system-1.0.0.pre45 exe/et_full_system
et_full_system-1.0.0.pre44 exe/et_full_system
et_full_system-1.0.0.pre35 exe/et_full_system
et_full_system-1.0.0.pre34 exe/et_full_system
et_full_system-1.0.0.pre33 exe/et_full_system
et_full_system-1.0.0.pre32 exe/et_full_system
et_full_system-1.0.0.pre31 exe/et_full_system
et_full_system-1.0.0.pre30 exe/et_full_system
et_full_system-1.0.0.pre29 exe/et_full_system
et_full_system-1.0.0.pre25 exe/et_full_system
et_full_system-1.0.0.pre19 exe/et_full_system
et_full_system-1.0.0.pre18 exe/et_full_system
et_full_system-1.0.0.pre17 exe/et_full_system
et_full_system-1.0.0.pre16 exe/et_full_system
et_full_system-1.0.0.pre15 exe/et_full_system
et_full_system-1.0.0.pre14 exe/et_full_system
et_full_system-1.0.0.pre13 exe/et_full_system
et_full_system-1.0.0.pre12 exe/et_full_system