class Knife::Clc::Async::ConfigOptions

Public Class Methods

attach(command_class) click to toggle source
# File lib/knife-clc/async/config_options.rb, line 5
def self.attach(command_class)
  command_class.class_eval do
    option :clc_wait,
      :long => '--wait',
      :description => 'Wait for operation completion',
      :boolean => true,
      :default => false,
      :on => :head
  end
end