class CBin::Config::Asker
Public Instance Methods
ask_with_answer(question, pre_answer, selection)
click to toggle source
# File lib/cocoapods-miBin/config/config_asker.rb, line 13 def ask_with_answer(question, pre_answer, selection) print "\n#{question}\n" print_selection_info = lambda { print "可选值:[ #{selection.join(' / ')} ]\n" if selection } print_selection_info.call print "旧值:#{pre_answer}\n" unless pre_answer.nil? answer = '' loop do show_prompt answer = STDIN.gets.chomp.strip if answer == '' && !pre_answer.nil? answer = pre_answer print answer.yellow print "\n" end next if answer.empty? break if !selection || selection.include?(answer) print_selection_info.call end answer end
done_message()
click to toggle source
# File lib/cocoapods-miBin/config/config_asker.rb, line 53 def done_message print "\n设置完成.\n".green end
show_prompt()
click to toggle source
# File lib/cocoapods-miBin/config/config_asker.rb, line 9 def show_prompt print ' > '.green end
wellcome_message()
click to toggle source
# File lib/cocoapods-miBin/config/config_asker.rb, line 42 def wellcome_message print <<~EOF 开始设置二进制化初始信息. 所有的信息都会保存在 #{CBin.config.config_file} 文件中. 你可以在对应目录下手动添加编辑该文件. 文件包含的配置信息样式如下: #{CBin.config.default_config.to_yaml} EOF end