Sha256: e83b1e9068ff0e8d2cfe23924aef26ebc7e74fe35e2bb72f2e0a9c0bb408e598

Contents?: true

Size: 935 Bytes

Versions: 8

Compression:

Stored size: 935 Bytes

Contents

# frozen_string_literal: true

# tau self commands
module SelfCommands
  # Backend method for config self commands.
  def self_commands
    _manipulate_output_(_get_thor_list_)
  end

  private

  # Get output of thor list command.
  def _get_thor_list_
    # use Thorfile which requires relative takelage.rb
    thorfile_dir = "#{File.dirname(__FILE__)}/../"

    # use thor list to get the list of commands and subcommands
    cmd_thor_list = "bash -c '" \
        "cd #{thorfile_dir} && " \
        'thor list' \
        "'"

    # call thor list command
    `#{cmd_thor_list}`
  end

  # Manipulate output of thor list command.
  def _manipulate_output_(thor_list)
    tau_commands = thor_list.gsub("takeltau\n", '')
    tau_commands.gsub!("------\n", '')
    tau_commands.gsub!('thor ', 'tau ')
    tau_commands.gsub!(/(.*)takeltau:c_l_i:(.*)#(.*)/, '\1\2               #\3')
    tau_commands.gsub!(/.*COMMAND.*\n/, '')
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
takeltau-0.38.1 lib/takeltau/self/commands.rb
takeltau-0.38.0 lib/takeltau/self/commands.rb
takeltau-0.37.3 lib/takeltau/self/commands.rb
takeltau-0.37.1 lib/takeltau/self/commands.rb
takeltau-0.36.5 lib/takeltau/self/commands.rb
takeltau-0.36.4 lib/takeltau/self/commands.rb
takeltau-0.36.3 lib/takeltau/self/commands.rb
takeltau-0.36.1 lib/takeltau/self/commands.rb