module ConvoxInstaller

Constants

VERSION

Public Instance Methods

client() click to toggle source
# File lib/convox_installer.rb, line 10
def client
  @client ||= Convox::Client.new(log_level: @log_level, config: config.config)
end
config() click to toggle source
# File lib/convox_installer.rb, line 14
def config
  options = {log_level: @log_level}
  options[:prompts] = @prompts if @prompts
  @config ||= Config.new(options)
end
ensure_requirements!() click to toggle source
# File lib/convox_installer.rb, line 24
def ensure_requirements!
  requirements.ensure_requirements!
end
prompt_for_config() click to toggle source
# File lib/convox_installer.rb, line 28
def prompt_for_config
  config.prompt_for_config
end
requirements() click to toggle source
# File lib/convox_installer.rb, line 20
def requirements
  @requirements ||= Requirements.new(log_level: @log_level)
end