method
translate_xml_entities
rails latest stable - Class:
ActiveSupport::CoreExtensions::Hash::Conversions::ClassMethods
translate_xml_entities(value)private
No documentation available.
# File activesupport/lib/active_support/core_ext/hash/conversions.rb, line 175
def translate_xml_entities(value)
value.gsub(/</, "<").
gsub(/>/, ">").
gsub(/"/, '"').
gsub(/'/, "'").
gsub(/&/, "&")
end