class Dapp::Kube::CLI::Command::Kube::SecretExtract

Public Instance Methods

log_running_time() click to toggle source
# File lib/dapp/kube/cli/command/kube/secret_extract.rb, line 34
def log_running_time
  false
end
run(argv = ARGV) click to toggle source
# File lib/dapp/kube/cli/command/kube/secret_extract.rb, line 22
def run(argv = ARGV)
  self.class.parse_options(self, argv)
  file_path = begin
    if cli_options[:values] || !cli_arguments.empty?
      self.class.required_argument(self, 'FILE_PATH')
    end
  end
  run_dapp_command(nil, options: cli_options) do |dapp|
    dapp.public_send(run_method, file_path)
  end
end