require 'command_mapper/arg' module CommandMapper # # Represents the value for an option. # class OptionValue < Arg # # Formats a value using the options {#type}. # # @param [Object] value # # @return [String] # def format(value) @type.format(value) end end end