Sha256: e46ab6a7ff591f4b18f2de93620643ab272a5376a224e78f62f656867f176cd5
Contents?: true
Size: 1.21 KB
Versions: 5
Compression:
Stored size: 1.21 KB
Contents
# frozen_string_literal: true require 'io/console' require 'uffizzi' module Uffizzi class Config include ApiClient def run(command, property, value) case command when 'list' handle_list_command when 'get' handle_get_command(property) when 'set' handle_set_command(property, value) when 'delete' handle_delete_command(property) else puts "#{command} is not a uffizzi config command" end end private def handle_list_command ConfigFile.list end def handle_get_command(property) if property.nil? puts 'No property provided' return end option = ConfigFile.read_option(property.to_sym) puts option unless option.nil? end def handle_set_command(property, value) if property.nil? || value.nil? puts 'No property provided' if property.nil? puts 'No value provided' if value.nil? return end ConfigFile.write_option(property.to_sym, value) end def handle_delete_command(property) if property.nil? puts 'No property provided' return end ConfigFile.delete_option(property.to_sym) end end end
Version data entries
5 entries across 5 versions & 1 rubygems