_parse_binary(bin, entity)
TODO: Add support for other encodings
# File activesupport/lib/active_support/xml_mini.rb, line 161 def _parse_binary(bin, entity) #:nodoc: case entity['encoding'] when 'base64' ::Base64.decode64(bin) else bin end end