module Knife::Clc::Bootstrap

Public Class Methods

included(command_class) click to toggle source
# File lib/knife-clc/bootstrap.rb, line 7
def self.included(command_class)
  ConfigOptions.attach(command_class)
end

Public Instance Methods

bootstrapper() click to toggle source
# File lib/knife-clc/bootstrap.rb, line 11
def bootstrapper
  @bootstrapper = Bootstrapper.new(
    :cloud_adapter => cloud_adapter,
    :config => config,
    :errors => errors
  )
end