returns a Proc that converts to String.
returns a Proc that converts to String
String.to_converter_proc.call(1) # => '1'
See Conversion.converter, Object#convert_to
90 91 92
# File 'lib/conversion/class_decoration.rb', line 90 def to_converter_proc proc { |value| value.to_s } end