Class: RedmineInstaller::Configuration::CustomConfiguration

Inherits:
Base
  • Object
show all
Defined in:
lib/redmine-installer/configuration.rb

Constant Summary

Constants included from Utils

Utils::PROGRESSBAR_FORMAT

Instance Method Summary collapse

Methods inherited from Base

#build, #delivery_method, #delivery_settings, #initialize, #make_config, #to_s

Methods included from Utils

#class_name, #create_dir, #env_user, #error, #logger, #ok, #pastel, #print_title, #prompt, #run_command

Constructor Details

This class inherits a constructor from RedmineInstaller::Configuration::Base

Instance Method Details

#get_parametersObject



111
112
113
114
115
116
117
118
119
# File 'lib/redmine-installer/configuration.rb', line 111

def get_parameters
  super
  @address = prompt.ask('Address:', required: true)
  @port = prompt.ask('Port:', convert: lambda(&:to_i), required: true)
  @domain = prompt.ask('Domain:')
  @authentication = prompt.ask('Authentication:')
  @openssl_verify = prompt.ask('Openssl verify mode:')
  @enable_starttls = prompt.yes?('Enable starttls?:', default: true)
end