Class: Object

Inherits:
BasicObject
Defined in:
lib/formatters.rb

Overview

Monkey patch (do as to_xml, but saner)

Instance Method Summary collapse

Instance Method Details

#to_xml(name = nil) ⇒ Object



266
267
268
# File 'lib/formatters.rb', line 266

def to_xml(name = nil)
  name ? %(<#{name}>#{self}</#{name}>) : to_s
end