Sha256: 373a66bb073b29b60d85e9b6bae7ab189c10455643ce2274085edd0bd6236202

Contents?: true

Size: 791 Bytes

Versions: 39

Compression:

Stored size: 791 Bytes

Contents

# frozen_string_literal: true

module Takeltau
  # tau mutagen
  class Mutagen < SubCommandBase
    include LoggingModule
    include SystemModule
    include ConfigModule
    include DockerCheckDaemon
    include DockerContainerLib
    include MutagenCheckDaemon

    def initialize(args = [], local_options = {}, configuration = {})
      # initialize thor parent class
      super

      log.debug 'Check docker dameon for mutagen subcommand'
      exit false unless docker_check_daemon

      log.debug 'Check mutagen dameon for mutagen subcommand'
      exit false unless mutagen_check_daemon
    end

    desc 'check [COMMAND]', 'Check mutagen'
    subcommand 'check', MutagenCheck

    desc 'socket [COMMAND]', 'Manage mutagen socket'
    subcommand 'socket', MutagenSocket
  end
end

Version data entries

39 entries across 39 versions & 1 rubygems

Version Path
takeltau-0.46.9 lib/takeltau/mutagen/cli.rb
takeltau-0.46.8 lib/takeltau/mutagen/cli.rb
takeltau-0.46.5 lib/takeltau/mutagen/cli.rb
takeltau-0.46.1 lib/takeltau/mutagen/cli.rb
takeltau-0.46.0 lib/takeltau/mutagen/cli.rb
takeltau-0.45.27 lib/takeltau/mutagen/cli.rb
takeltau-0.45.26 lib/takeltau/mutagen/cli.rb
takeltau-0.45.24 lib/takeltau/mutagen/cli.rb
takeltau-0.45.23 lib/takeltau/mutagen/cli.rb
takeltau-0.45.22 lib/takeltau/mutagen/cli.rb
takeltau-0.45.21 lib/takeltau/mutagen/cli.rb
takeltau-0.45.19 lib/takeltau/mutagen/cli.rb
takeltau-0.45.17 lib/takeltau/mutagen/cli.rb
takeltau-0.45.16 lib/takeltau/mutagen/cli.rb
takeltau-0.45.14 lib/takeltau/mutagen/cli.rb
takeltau-0.45.13 lib/takeltau/mutagen/cli.rb
takeltau-0.45.12 lib/takeltau/mutagen/cli.rb
takeltau-0.45.11 lib/takeltau/mutagen/cli.rb
takeltau-0.45.10 lib/takeltau/mutagen/cli.rb
takeltau-0.45.9 lib/takeltau/mutagen/cli.rb