class Utils::IRB::Shell::WrapperBase
def initialize(name)
-
name
(Object
) -- the input name to be converted to a string
def initialize(name) @name = case when name.respond_to?(:to_str) name.to_str when name.respond_to?(:to_sym) name.to_sym.to_s else name.to_s end end