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

Version Path
et_full_system-0.1.53 exe/et_full_system
et_full_system-0.1.52 exe/et_full_system
et_full_system-0.1.52.pre4 exe/et_full_system
et_full_system-0.1.52.pre3 exe/et_full_system
et_full_system-0.1.52.pre2 exe/et_full_system
et_full_system-0.1.52.pre exe/et_full_system
et_full_system-0.1.51 exe/et_full_system
et_full_system-0.1.50 exe/et_full_system
et_full_system-0.1.49 exe/et_full_system
et_full_system-0.1.47 exe/et_full_system
et_full_system-0.1.45 exe/et_full_system
et_full_system-0.1.44 exe/et_full_system
et_full_system-0.1.43 exe/et_full_system
et_full_system-0.1.42 exe/et_full_system
et_full_system-0.1.41 exe/et_full_system
et_full_system-0.1.40 exe/et_full_system
et_full_system-0.1.39 exe/et_full_system
et_full_system-0.1.38 exe/et_full_system
et_full_system-0.1.37 exe/et_full_system
et_full_system-0.1.36 exe/et_full_system